Files
OspowWebsite/Dockerfile

15 lines
259 B
Docker
Raw Permalink Normal View History

2026-03-16 16:11:19 +01:00
FROM python:3.12-slim
WORKDIR /app
# Copie et installation des dépendances d'abord (cache Docker efficace)
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copie du reste du code
COPY . .
EXPOSE 5000
CMD ["python", "app.py"]