This commit is contained in:
JMARyA 2024-12-08 14:21:32 +01:00
commit b2f6f60d5e
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
3 changed files with 45 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM python:3.9-slim
WORKDIR /app
RUN pip install Flask
COPY main.py /app/main.py
EXPOSE 5000
CMD ["python", "main.py"]