mirror of
https://github.com/dnscrypt/dnscrypt-server-docker
synced 2024-11-22 15:32:01 +01:00
Separate update-ca-certificates
in Dockerfile
Combine it with apk operation, will cause missing error issues due to the following `|| true`, we should prevent that and let apk fail when it's needed.
This commit is contained in:
parent
11e4f8620f
commit
fee7c88a04
@ -7,8 +7,8 @@ ENV CFLAGS=-Ofast
|
||||
ENV BUILD_DEPS make gcc musl-dev git libevent-dev expat-dev shadow autoconf file openssl-dev byacc linux-headers
|
||||
ENV RUNTIME_DEPS bash util-linux coreutils findutils grep openssl ldns ldns-tools libevent expat libexecinfo coreutils drill ca-certificates
|
||||
|
||||
RUN apk --no-cache upgrade && apk add --no-cache $RUNTIME_DEPS && \
|
||||
update-ca-certificates 2> /dev/null || true
|
||||
RUN apk --no-cache upgrade && apk add --no-cache $RUNTIME_DEPS
|
||||
RUN update-ca-certificates 2> /dev/null || true
|
||||
|
||||
ENV UNBOUND_GIT_URL https://github.com/jedisct1/unbound.git
|
||||
ENV UNBOUND_GIT_REVISION 4edb15ba417c78710069a5be8be3a6b5d8bdba9c
|
||||
|
Loading…
Reference in New Issue
Block a user