mirror of
https://github.com/smallstep/certificates.git
synced 2024-10-31 03:20:16 +00:00
2f661c0941
Fixes #48
20 lines
613 B
Docker
20 lines
613 B
Docker
# build stage
|
|
FROM golang:alpine AS build-env
|
|
RUN apk update && apk upgrade && \
|
|
apk add --no-cache git
|
|
RUN go get -u github.com/golang/dep/cmd/dep
|
|
WORKDIR $GOPATH/src/github.com/step-certificates-k8s/controller
|
|
# copy dep files and run dep separately from code for better caching
|
|
COPY Gopkg.toml Gopkg.lock ./
|
|
RUN dep ensure --vendor-only
|
|
COPY . ./
|
|
RUN go build -o /server .
|
|
|
|
# final stage
|
|
FROM smallstep/step-cli:0.9.0
|
|
ENV STEPPATH="/home/step/.step"
|
|
ENV PWDPATH="/home/step/password/password"
|
|
ENV CONFIGPATH="/home/step/autocert/config.yaml"
|
|
COPY --from=build-env /server .
|
|
ENTRYPOINT ./server $CONFIGPATH
|