From 07abbb2abe49cedf7bfc237cf5efcc4383bf77e6 Mon Sep 17 00:00:00 2001 From: Guillaume-Sanchez Date: Mon, 29 Jun 2026 22:11:22 +0200 Subject: [PATCH] Add : Front end --- Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 12e2a05..be3088f 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,12 @@ FROM python:3.9-slim -# On force la racine du projet comme répertoire de travail WORKDIR /app -# On installe les dépendances COPY app/requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -# On copie TOUT le contenu du dossier local app dans le WORKDIR (/app) COPY app/ . -# Exposer le port EXPOSE 8000 -# On lance avec le chemin complet explicite CMD ["python", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file