Created
September 8, 2020 21:51
-
-
Save leonmwandiringa/bbfdc828909c0a4f8dfe129e5eb481a4 to your computer and use it in GitHub Desktop.
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
ARG GO_VERSION=1.12 | |
FROM golang:${GO_VERSION}-alpine AS builder | |
RUN apk update && apk add alpine-sdk git && rm -rf /var/cache/apk/* | |
RUN mkdir -p /api | |
WORKDIR /api | |
COPY . . | |
RUN go mod download | |
RUN go build -o ./app ./*.go | |
FROM alpine:latest | |
RUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/* | |
RUN mkdir -p /api | |
WORKDIR /api | |
COPY --from=builder /api/app . | |
EXPOSE 80 | |
ENTRYPOINT ["./app"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment