From 078acd92d15ceede61bd5ba7a7269f00069b6baf Mon Sep 17 00:00:00 2001 From: goose Date: Thu, 5 Mar 2026 10:15:58 -0300 Subject: [PATCH] Fix Dockerfile CMD path - Change from ./normogen-backend to normogen-backend The Dockerfile had an incorrect CMD path that caused the container to fail with 'stat ./normogen-backend: no such file or directory'. The binary was being copied to /usr/local/bin/ but the CMD was trying to execute it from the current working directory. This fix changes the CMD to use the absolute path which resolves the issue. --- backend/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/docker/Dockerfile b/backend/docker/Dockerfile index 20048e9..3cd476c 100644 --- a/backend/docker/Dockerfile +++ b/backend/docker/Dockerfile @@ -43,4 +43,4 @@ COPY --from=builder /app/target/release/normogen-backend /usr/local/bin/normogen EXPOSE 8000 # Run the application -CMD ["./normogen-backend"] +CMD ["normogen-backend"]