-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from sotchenkov/patch/dockerfile
multi-stage building
- Loading branch information
Showing
1 changed file
with
11 additions
and
5 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 |
---|---|---|
@@ -1,14 +1,20 @@ | ||
FROM golang:alpine | ||
FROM golang:1.22 as builder | ||
|
||
WORKDIR /app | ||
|
||
COPY . . | ||
RUN go mod download | ||
|
||
ENV CGO_ENABLED 0 | ||
ENV GOOS linux | ||
|
||
RUN go mod download | ||
RUN go build -o limero ./cmd/limero/main.go | ||
|
||
EXPOSE 7920 | ||
|
||
ENTRYPOINT [ "/app/limero" ] | ||
FROM alpine:3.19 | ||
|
||
WORKDIR /app | ||
COPY --from=builder /app/limero . | ||
|
||
EXPOSE 7920 | ||
|
||
ENTRYPOINT [ "/app/limero" ] |