diff --git a/Dockerfile b/Dockerfile index 890e05a..aef72d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,10 @@ WORKDIR /src # Copy your local source (you already have it) COPY . . -# Build the binary — just "make" is enough (default target = all) +# fix go mod +RUN go mod tidy + +# Build the binary RUN make # Verify it was built