From a22d77c7e4845f95ad29b610da2e5cd09c55b2e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ask=20Bj=C3=B8rn=20Hansen?= Date: Fri, 21 May 2021 00:27:36 -0700 Subject: [PATCH] static-misc: use sqlite instead of dbm for archive (the dbm module isn't included anymore in Alpine 3.13) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0a27bd3..35c77a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM quay.io/perl/base-os:v3.11.6 +FROM harbor.ntppool.org/perlorg/base-os:3.13.5-1 ENV BUILD_VERSION 1 USER root WORKDIR /web VOLUME /git VOLUME /web/config RUN apk --no-cache upgrade -RUN apk --no-cache add apache2 apache2-utils apache2-proxy apache2-ssl apr-util-dbm_db +RUN apk --no-cache add apache2 apache2-utils apache2-proxy apache2-ssl apr-util-dbd_sqlite3 sqlite #RUN mkdir /run/apache2; chown apache:apache /run/apache2 RUN mv /etc/apache2/conf.d/proxy.conf /etc/apache2/conf.d/proxy.conf.disabled RUN ln -s /dev/stderr /var/log/apache2/error.log