15 lines
259 B
Docker
15 lines
259 B
Docker
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"]
|