From 476bf59e182a41d36832f0c31b4cf15c7f18e890 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hanno=20B=C3=B6ck?= <990588+hannob@users.noreply.github.com> Date: Sat, 19 Oct 2024 11:34:48 +0200 Subject: [PATCH] remove Dockerfile Author has not reacted to license change, see https://github.com/hannob/snallygaster/issues/77 If there is interest in having a dockerfile, it could be maintained outside this repo, but I personally do not use it, and would rather have someone else maintain it. --- Dockerfile | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 7819255..0000000 --- a/Dockerfile +++ /dev/null @@ -1,10 +0,0 @@ -FROM python:3-alpine - -WORKDIR /app -ADD requirements.txt setup.py /app/ -RUN pip install -r requirements.txt -RUN adduser -h /app -D app -USER app - -ENV PATH "/app:$PATH" -ADD . /app/