-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM golang:1.20.1-alpine3.17 AS builder | ||
|
||
ENV GOPROXY=https://goproxy.cn,direct | ||
|
||
WORKDIR /src | ||
|
||
# Copy go mod and sum files | ||
COPY go.mod go.sum ./ | ||
|
||
# Download all dependencies. Dependencies will be cached if the go.mod and the go.sum files are not changed | ||
RUN go mod download | ||
|
||
# Copy source code | ||
COPY . . | ||
|
||
# Build the Go app | ||
RUN go build -o /go/bin/app | ||
|
||
FROM alpine:3.17 | ||
|
||
COPY --from=builder /go/bin/app /go/bin/app | ||
|
||
CMD ["/go/bin/app"] |