From d15d7c623492cec2d99dc317954eceb5f513c7ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ask=20Bj=C3=B8rn=20Hansen?= Date: Wed, 21 Feb 2018 00:04:19 -0800 Subject: [PATCH] Upgrade static-web image to alpine 3.7 (httpd 2.4.29 from .27) built as quay.io/perl/static-web:v1.1.0 --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 422cd73..821fdb1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,10 @@ -FROM quay.io/perl/base-os:v3.2 +FROM quay.io/perl/base-os:v3.3 USER root WORKDIR /web VOLUME /git VOLUME /web/config -RUN apk update; apk add apache2 apache2-utils apache2-proxy apache2-ssl +RUN apk --no-cache upgrade +RUN apk --no-cache add apache2 apache2-utils apache2-proxy apache2-ssl RUN mkdir /run/apache2; chown 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