J'avais oublié de push...

This commit is contained in:
2025-05-04 13:34:24 +02:00
parent c5ac649848
commit c370789eba
16 changed files with 20344 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
FROM ubuntu:20.04
RUN apt-get update && \
apt-get install -y python3 python3-pip
COPY requirements.txt .
RUN pip3 install -r requirements.txt
COPY app.py .
CMD ["python3", "app.py"]