Skip to content

Commit

Permalink
Make docker image capable of running HTTP IPA
Browse files Browse the repository at this point in the history
w/o certs installed, it panics with "no ca certificates" error
  • Loading branch information
akoshelev committed Jul 20, 2023
1 parent a02423e commit a2f0c44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/helper.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ARG IDENTITY
ARG HOSTNAME
ARG SOURCES_DIR

RUN apt-get update && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
COPY --from=builder ${SOURCES_DIR}/target/release/helper $HELPER_BIN_PATH

# generate certificate/private key for TLS
Expand Down

0 comments on commit a2f0c44

Please sign in to comment.