From 4377ac32b43c7b1cd35efde91058c850c379cbb4 Mon Sep 17 00:00:00 2001 From: Alix JEUDI--LEMOINE Date: Mon, 3 Feb 2025 16:17:14 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=20Fix=20python=20command=20name=20?= =?UTF-8?q?in=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index bb173c9..837747e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -17,7 +17,7 @@ COPY . . EXPOSE 80 # Runs the stub script -RUN "python app/stub.py" +RUN "python3 app/stub.py" # Launches the uvicorn server (command from offical FastAPI documentation) CMD ["fastapi", "run", "app/main.py", "--port", "80"] \ No newline at end of file