This commit is contained in:
2024-12-15 00:47:32 +01:00
parent 61c3e65552
commit fc1dc109d5
4 changed files with 86 additions and 53 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3.9-slim-buster
WORKDIR /app
COPY script.py ./
RUN pip install flask pyyaml
CMD ["python", "script.py"]