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,18 @@
FROM ubuntu:22.04
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y python3 python3-pip && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt
COPY app.py .
USER nobody
EXPOSE 5000
CMD ["python3", "app.py"]