Files
TP_Docker/TP5/Exercice-4.2/Dockerfile

18 lines
330 B
Docker
Raw Normal View History

2025-05-04 13:34:24 +02:00
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"]