From d9fb67a1d5d1beebe4fede20a6fb49f2233a1f2f Mon Sep 17 00:00:00 2001 From: bartool Date: Sat, 29 Nov 2025 23:28:08 +0100 Subject: [PATCH] fix: correct application import path in Dockerfile CMD --- backand/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backand/Dockerfile b/backand/Dockerfile index 8b6b529..0787dd3 100644 --- a/backand/Dockerfile +++ b/backand/Dockerfile @@ -52,4 +52,4 @@ USER appuser EXPOSE 7090 # Run Django with uvicorn -CMD ["uvicorn", "MPM:application", "--host", "0.0.0.0", "--port", "7090"] +CMD ["uvicorn", "MPM.asgi:application", "--host", "0.0.0.0", "--port", "7090"]