forked from TrueCloudLab/certificates
39f46d31b9
This commit removes the following deprecated binaries: - step-awskms-init - step-cloudkms-init - step-pkcs11-init - step-yubikey-init From now on step and step-kms-plugin should be used to initialize the PKI in AWS KMS, GCP KMS, PKCS#11 modules or YubiKeys. A future commit will add step-kms-plugin to the docker images of step-ca. Fixes #1046
30 lines
802 B
Text
30 lines
802 B
Text
FROM golang:alpine AS builder
|
|
|
|
WORKDIR /src
|
|
COPY . .
|
|
|
|
RUN apk add --no-cache curl git make
|
|
RUN apk add --no-cache gcc musl-dev pkgconf pcsc-lite-dev
|
|
RUN make V=1 download
|
|
RUN make V=1 GOFLAGS="" build
|
|
|
|
FROM smallstep/step-cli:latest
|
|
|
|
COPY --from=builder /src/bin/step-ca /usr/local/bin/step-ca
|
|
|
|
USER root
|
|
RUN apk add --no-cache libcap && setcap CAP_NET_BIND_SERVICE=+eip /usr/local/bin/step-ca
|
|
RUN apk add --no-cache pcsc-lite pcsc-lite-libs
|
|
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
|