Skip to content

Instantly share code, notes, and snippets.

@naviat
Forked from mlabouardy/Dockerfile
Created August 1, 2018 16:35
Show Gist options
  • Save naviat/2615118cd1cdb4ac6437730ac0343fa9 to your computer and use it in GitHub Desktop.
Save naviat/2615118cd1cdb4ac6437730ac0343fa9 to your computer and use it in GitHub Desktop.
Dockerfile to build a Golang based application image
FROM golang:1.10
WORKDIR /go/src/github.com/mlabouardy/lambda-oneshot-container
COPY main.go .
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app .
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /root/
COPY --from=0 /go/src/github.com/mlabouardy/lambda-oneshot-container/app .
CMD ["./app"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment