smallstep-certificates/autocert/examples/hello-mtls/go/Dockerfile.client
2019-01-24 17:22:36 -08:00

11 lines
197 B
Docker

# build stage
FROM golang:alpine AS build-env
RUN mkdir /src
ADD client.go /src
RUN cd /src && go build -o client
# final stage
FROM alpine
COPY --from=build-env /src/client .
ENTRYPOINT ./client