From 59491234be73b4cc159110b6e56055a7764ae41b Mon Sep 17 00:00:00 2001 From: trizin <25263018+trizin@users.noreply.github.com> Date: Thu, 3 Aug 2023 08:47:33 +0000 Subject: [PATCH] Add Dockerfile --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..14aa0912e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM python:3.8-slim-buster +WORKDIR /app +ADD . /app +RUN pip install --no-cache-dir -r requirements.txt +ENTRYPOINT ["/app/entrypoint.sh"]