This commit is contained in:
Pierre-arthur 2025-03-06 18:24:12 +01:00
parent 644204532d
commit 29efa00532
2 changed files with 8 additions and 0 deletions

7
DockerFile Normal file
View File

@ -0,0 +1,7 @@
FROM python:3.9-slim
WORKDIR /app
COPY . /app
CMD ["python", "app.py"]

1
app.py Normal file
View File

@ -0,0 +1 @@
print("PLOP")