From b213bdce46a0a4143b4f6b657e94485ca85aa03a Mon Sep 17 00:00:00 2001 From: 12ww1160 Date: Tue, 2 Dec 2025 15:14:02 +0100 Subject: [PATCH] OP#176 edit Dockerfile go mod step --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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