This commit is contained in:
2021-11-28 21:30:22 +01:00
commit 6d564ffdcd
6 changed files with 55 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.9-alpine
COPY requirements.txt /
RUN pip3 install -r /requirements.txt
COPY ./app/ /app
WORKDIR /app
EXPOSE 80/tcp
ENTRYPOINT ["./entrypoint.sh"]