Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 894a6f01c2 | |||
| 9896850b49 | |||
| 48f4423986 |
@@ -5,6 +5,10 @@ WORKDIR /app
|
||||
|
||||
# Copy go.mod and go.sum files to download dependencies
|
||||
COPY go.mod go.sum ./
|
||||
|
||||
# Install the C compiler (gcc) and other build tools needed for CGO
|
||||
RUN apk add --no-cache build-base
|
||||
|
||||
RUN go mod download
|
||||
|
||||
# Copy the rest of the application source code
|
||||
@@ -13,7 +17,7 @@ COPY . .
|
||||
# Build the application
|
||||
# CGO_ENABLED=0 is important for a clean static build for Alpine
|
||||
# -o main specifies the output file name
|
||||
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o main .
|
||||
RUN CGO_ENABLED=1 go build -o main .
|
||||
|
||||
# Stage 2: Create the final lightweight image
|
||||
FROM alpine:latest
|
||||
|
||||
Reference in New Issue
Block a user