smallstep-certificates/autocert/examples/hello-mtls/go/Dockerfile.client

11 lines
197 B
Docker
Raw Normal View History

2019-01-25 01:22:36 +00:00
# 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