Remove build dependencies from image

This commit is contained in:
Fernando Costa 2020-07-02 16:16:14 -03:00
parent 6f891de80f
commit f5ef4cc849
1 changed files with 4 additions and 2 deletions

View File

@ -25,14 +25,16 @@ ENV HTTPD_PATCHES=""
RUN set -eux; \ RUN set -eux; \
\ \
runDeps=' \ runDeps=' \
apr-dev \ apr \
apr-util \
apr-util-dbm_db \ apr-util-dbm_db \
apr-util-dev \
apr-util-ldap \ apr-util-ldap \
perl \ perl \
'; \ '; \
apk add --no-cache --virtual .build-deps \ apk add --no-cache --virtual .build-deps \
$runDeps \ $runDeps \
apr-dev \
apr-util-dev \
ca-certificates \ ca-certificates \
coreutils \ coreutils \
dpkg-dev dpkg \ dpkg-dev dpkg \