feat: Push initial version

This commit is contained in:
2024-02-09 23:04:20 +11:00
parent 924d9639a5
commit 6f195c86a1
16 changed files with 702 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM python:3.10-bullseye
COPY requirements.txt /app/
WORKDIR /app
RUN pip install -r requirements.txt
COPY . .
VOLUME /app/instance
CMD ["flask", "run", "-p", "9090", "-h", "0.0.0.0"]