From ba257b1a63f7da3d3d7f59af7895c5ed06b14d5c Mon Sep 17 00:00:00 2001 From: Guillaume-Sanchez Date: Mon, 29 Jun 2026 22:15:28 +0200 Subject: [PATCH] Add : Front end --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d4c6de3..92bc5bc 100755 --- a/Dockerfile +++ b/Dockerfile @@ -4,4 +4,4 @@ COPY app/requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY app/ . EXPOSE 8000 -CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file +CMD ["python", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file