From 4120a3e5ff3b181533dd851c2fa1c72bb3355d82 Mon Sep 17 00:00:00 2001 From: Sable no <72171476+Sable-20@users.noreply.github.com> Date: Tue, 30 Mar 2021 10:11:32 -0400 Subject: [PATCH] added a docker file --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7920d14 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM python:alpine3.13 + +RUN mkdir /app +WORKDIR /app +COPY . /app + +RUN /usr/local/bin/python -m pip install --upgrade pip +RUN /usr/local/bin/python --version + +RUN pip3 install --no-cache-dir -r requirements.txt +RUN chmod +x ./*.py +ENTRYPOINT [ "/app/sublist3r2.py" ] \ No newline at end of file