certificates/docker/Dockerfile.step-ca

18 lines
421 B
Text
Raw Permalink Normal View History

2019-02-28 22:01:10 +00:00
FROM smallstep/step-cli:latest
ARG BINPATH="bin/step-ca"
ENV PORT=9000
ENV CONFIGPATH="/home/step/.step/config/ca.json"
ENV PWDPATH="/home/step/secrets/password"
COPY $BINPATH "/usr/local/bin/step-ca"
EXPOSE $PORT
VOLUME ["/home/step/.step/secrets"]
VOLUME ["/home/step/.step/config"]
VOLUME ["/home/step/secrets"]
STOPSIGNAL SIGTERM
CMD exec /bin/sh -c "/usr/local/bin/step-ca --password-file $PWDPATH $CONFIGPATH"