You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
339 B
Docker
20 lines
339 B
Docker
FROM golang:alpine AS builder
|
|
|
|
ENV GOPROXY https://modules.fromouter.space
|
|
ENV GO111MODULE=on
|
|
|
|
WORKDIR /app
|
|
|
|
# Get updated modules
|
|
COPY ./ ./
|
|
RUN go mod download
|
|
|
|
# Compile code
|
|
RUN CGO_ENABLED=0 go build -o /svc .
|
|
|
|
FROM scratch AS final
|
|
|
|
# Import the compiled executable from the first stage.
|
|
COPY --from=builder /svc /svc
|
|
|
|
CMD [ "/svc" ] |