Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/docs/guides/gin.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down