From cf8012c6975eba0702548bd4745b2acc30013435 Mon Sep 17 00:00:00 2001 From: TimHoogervorst Date: Sun, 10 May 2026 15:38:55 +0200 Subject: [PATCH] Fix CMD command in Dockerfile to use correct module path --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index ca53a08..979afa1 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -10,4 +10,4 @@ COPY . /app ENV PYTHONPATH=/app -CMD ["uvicorn", "agent-api.main:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file +CMD ["uvicorn", "agent_api.main:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file