OP#176 edit Dockerfile go mod step

This commit is contained in:
2025-12-02 15:14:02 +01:00
parent 7b4c5b594b
commit b213bdce46

View File

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