Skip to content

Instantly share code, notes, and snippets.

@leonmwandiringa
Created September 8, 2020 21:51
Show Gist options
  • Save leonmwandiringa/bbfdc828909c0a4f8dfe129e5eb481a4 to your computer and use it in GitHub Desktop.
Save leonmwandiringa/bbfdc828909c0a4f8dfe129e5eb481a4 to your computer and use it in GitHub Desktop.
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