This commit is contained in:
Gašper Dobrovoljc
2025-11-20 10:42:06 +01:00
commit cfac75516b
7 changed files with 119 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
FROM python:alpine
RUN pip install flask
COPY ./app.py ./app.py
CMD ["python", "app.py"]