Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
leafduo committed Mar 4, 2023
1 parent 2184daf commit 071e05a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Dockerfile
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"]

0 comments on commit 071e05a

Please sign in to comment.