From 029966bba8fc3df6a017700b3df916474923f822 Mon Sep 17 00:00:00 2001 From: Andreas Zapf Date: Fri, 12 Apr 2019 21:23:09 +0200 Subject: [PATCH] Go back to httpd:2.4.37 to work around a DBM driver issue in 2.4 With versions above 2.4.37, e.g PUT requests fail with an internal server error. The log says: (20019)DSO load failed: AH00576: The DBM driver could not be loaded This has been reported before, see https://github.com/BytemarkHosting/docker-webdav/issues/8 Going to the most recent 2.4.39 seems to fix the issue for the OP but not for me -- maybe because I'm building for ARM. --- 2.4/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2.4/Dockerfile b/2.4/Dockerfile index 6083e29..3184b34 100644 --- a/2.4/Dockerfile +++ b/2.4/Dockerfile @@ -1,4 +1,4 @@ -FROM httpd:alpine +FROM httpd:2.4.37-alpine # These variables are inherited from the httpd:alpine image: # ENV HTTPD_PREFIX /usr/local/apache2