diff --git a/Dockerfile b/Dockerfile index f7fc79f..ab7ca58 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN go mod download COPY . . # Build the Go application -RUN go build -o main . +RUN go build -o main ./... # Stage 2: Create a minimal production image FROM alpine:latest