Finished Version 3

This commit is contained in:
2021-11-01 13:58:15 +00:00
parent 774f279315
commit 6859b75825
32 changed files with 3928 additions and 2 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM python:3.10-alpine
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python","app.py"]