-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prepare docker image for quay, pushing via goreleaser
- Loading branch information
Showing
2 changed files
with
60 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
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,29 @@ | ||
FROM golang:alpine AS builder | ||
RUN apk add git | ||
# necessary environmet variables | ||
ENV GO111MODULE=on \ | ||
CGO_ENABLED=0 \ | ||
GOOS=linux \ | ||
GOARCH=amd64 | ||
|
||
WORKDIR /build | ||
COPY go.mod . | ||
COPY go.sum . | ||
RUN go mod download | ||
|
||
# Copy the code into the container & build | ||
COPY main.go . | ||
RUN go build -o gman main.go | ||
|
||
WORKDIR /app | ||
|
||
# Copy binary from build to main folder | ||
RUN cp /build/gman . | ||
|
||
# Build a small image | ||
FROM scratch | ||
|
||
COPY --from=builder /app/gman / | ||
|
||
# Command to run | ||
ENTRYPOINT ["/gman"] |