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