diff --git a/src/docs/guides/gin.md b/src/docs/guides/gin.md index 23c2d9d47..dfe77baa9 100644 --- a/src/docs/guides/gin.md +++ b/src/docs/guides/gin.md @@ -68,12 +68,12 @@ width={2661} height={1019} quality={100} /> # Copy go mod and sum files COPY go.mod go.sum ./ - # Copy local code to the container image. - COPY . ./ - # Install project dependencies RUN go mod download + # Copy local code to the container image. + COPY . ./ + # Build the app RUN go build -o app