From dc93de9b180a3a0d16e7b593303ea0d0df500892 Mon Sep 17 00:00:00 2001 From: ThomasTaroni Date: Sat, 31 May 2025 20:06:23 +0200 Subject: [PATCH] Use shell form for CMD in Dockerfile Switched CMD to use shell form instead of exec form for running the application. This simplifies the command syntax and ensures compatibility in environments where exec form parsing may cause issues. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6b0b52c..d45dabe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,4 +25,4 @@ COPY src/ /app/ EXPOSE 8000 # Set the default command to run the app with `uvicorn` -CMD ["python", "$APP_ENTRYPOINT"] \ No newline at end of file +CMD python "$APP_ENTRYPOINT" \ No newline at end of file