Merge pull request #364 from smallstep/docker-tweaks

Update Dockerfile.step-ca to match best practices
This commit is contained in:
Carl Tashian 2020-09-08 18:11:21 -07:00 committed by GitHub
commit b792f9144f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 9 deletions

7
.dockerignore Normal file
View file

@ -0,0 +1,7 @@
README.md
.gitignore
bin
coverage.txt
*.test
*.out
.travis-releases

View file

@ -1,24 +1,27 @@
FROM golang:alpine AS builder
RUN mkdir /src
ADD . /src
WORKDIR /src
COPY . .
RUN apk add --no-cache make git curl && \
cd /src && \
RUN apk add --no-cache \
curl \
git \
make && \
make V=1 bin/step-ca
FROM smallstep/step-cli:latest
COPY --from=builder /src/bin/step-ca /usr/local/bin/step-ca
ENV CONFIGPATH="/home/step/config/ca.json"
ENV PWDPATH="/home/step/secrets/password"
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
CMD exec /bin/sh -c "/usr/local/bin/step-ca --password-file $PWDPATH $CONFIGPATH"
CMD exec /usr/local/bin/step-ca --password-file $PWDPATH $CONFIGPATH