Initial commit

This commit is contained in:
2023-09-07 08:20:38 +00:00
commit 2765d91861
15 changed files with 675 additions and 0 deletions

9
deploy/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM docker.sciocatti.com/python-3.8-fastapi:0.0.1
WORKDIR /project
COPY static/ static/
COPY src/ src/
COPY html/ html/
COPY main.py main.py
CMD . /venv/bin/activate && cd /project && exec python main.py