add base project

This commit is contained in:
2026-03-09 09:57:38 +01:00
commit 70fb6b82bd
14 changed files with 143 additions and 0 deletions

8
web/dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.11
WORKDIR /web
COPY . /web
RUN pip install flask
CMD ["python", "app.py"]