Move ca-certificates to runtime dependency

This commit is contained in:
Joe Ferguson 2022-06-06 11:27:29 -07:00
parent a79377caec
commit e9c5532bbb
2 changed files with 4 additions and 2 deletions

View File

@ -14,6 +14,8 @@ WORKDIR $HTTPD_PREFIX
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends \
# https://github.com/docker-library/httpd/issues/214
ca-certificates \
libaprutil1-ldap \
# https://github.com/docker-library/httpd/issues/209
libldap-common \
@ -35,7 +37,6 @@ RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends \
bzip2 \
ca-certificates \
dirmngr \
dpkg-dev \
gcc \

View File

@ -21,6 +21,8 @@ RUN set -eux; \
apr \
apr-util \
apr-util-ldap \
# https://github.com/docker-library/httpd/issues/214
ca-certificates \
perl \
;
@ -36,7 +38,6 @@ RUN set -eux; \
apk add --no-cache --virtual .build-deps \
apr-dev \
apr-util-dev \
ca-certificates \
coreutils \
dpkg-dev dpkg \
gcc \