From 7d07e1853acbf4b0251248f704621e021e1bafa3 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 15 Aug 2025 01:08:22 +0000 Subject: [PATCH] fix: update Dockerfile build command - Updated the Dockerfile to use the correct build command for the new project structure. --- Dockerfile | 2 +- config.go => cmd/anzu/config.go | 0 init.go => cmd/anzu/main.go | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename config.go => cmd/anzu/config.go (100%) rename init.go => cmd/anzu/main.go (100%) diff --git a/Dockerfile b/Dockerfile index 92354b1..0471d95 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ COPY . . # Copy the built frontend from the previous stage COPY --from=frontend_build /tmp/anzu/static/frontend/public /tmp/anzu/static/frontend/public -RUN go build -o ./out/anzu . +RUN go build -o ./out/anzu ./cmd/anzu # Start fresh from a smaller image FROM alpine:latest diff --git a/config.go b/cmd/anzu/config.go similarity index 100% rename from config.go rename to cmd/anzu/config.go diff --git a/init.go b/cmd/anzu/main.go similarity index 100% rename from init.go rename to cmd/anzu/main.go