diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2019-08-15 06:46:38 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2019-08-15 06:46:38 +0200 |
commit | d0e40d97a52a599dbb110fa23ef510ca238049c5 (patch) | |
tree | 7ba4650ec67132fee4466c7a4c6597785fd9b025 | |
parent | b1f401cfbcf10ff82dcaa3edc79f8bdff0cf4323 (diff) | |
download | apache-d0e40d97a52a599dbb110fa23ef510ca238049c5.tar.gz apache-d0e40d97a52a599dbb110fa23ef510ca238049c5.tar.bz2 apache-d0e40d97a52a599dbb110fa23ef510ca238049c5.tar.xz apache-d0e40d97a52a599dbb110fa23ef510ca238049c5.zip |
Install DBM module for apr-util
-rw-r--r-- | 2.4/Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/2.4/Dockerfile b/2.4/Dockerfile index bc6f583..52e7104 100644 --- a/2.4/Dockerfile +++ b/2.4/Dockerfile @@ -7,6 +7,7 @@ FROM httpd:alpine RUN set -ex; \ # Install openssl if we need to generate a self-signed certificate. apk add --no-cache openssl; \ + apk add --no-cache apr-util-dbm_db; \ # Create empty default DocumentRoot. mkdir -p "/var/www/html"; \ # Create directories for Dav data and lock database. |