mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-05 21:20:34 +00:00
18555a3cb2
On systems with low resources the command `go mod download` can fail. This causes long builds of the docker images. This change adds a new layer in the docker build splitting the build and download in two steps. Fixes #1114
32 lines
896 B
Docker
32 lines
896 B
Docker
FROM golang:alpine AS builder
|
|
|
|
WORKDIR /src
|
|
COPY . .
|
|
|
|
RUN apk add --no-cache curl git make
|
|
RUN make V=1 download
|
|
RUN make V=1 bin/step-ca bin/step-awskms-init bin/step-cloudkms-init
|
|
|
|
|
|
FROM smallstep/step-cli:latest
|
|
|
|
COPY --from=builder /src/bin/step-ca /usr/local/bin/step-ca
|
|
COPY --from=builder /src/bin/step-awskms-init /usr/local/bin/step-awskms-init
|
|
COPY --from=builder /src/bin/step-cloudkms-init /usr/local/bin/step-cloudkms-init
|
|
|
|
USER root
|
|
RUN apk add --no-cache libcap && setcap CAP_NET_BIND_SERVICE=+eip /usr/local/bin/step-ca
|
|
USER step
|
|
|
|
ENV CONFIGPATH="/home/step/config/ca.json"
|
|
ENV PWDPATH="/home/step/secrets/password"
|
|
|
|
VOLUME ["/home/step"]
|
|
STOPSIGNAL SIGTERM
|
|
HEALTHCHECK CMD step ca health 2>/dev/null | grep "^ok" >/dev/null
|
|
|
|
COPY docker/entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]
|
|
CMD exec /usr/local/bin/step-ca --password-file $PWDPATH $CONFIGPATH
|