From 76c27047314722e726bfb2c0a2b6a6f4ae726388 Mon Sep 17 00:00:00 2001 From: Richard Zuidhof Date: Sun, 20 Nov 2016 16:13:14 +0100 Subject: [PATCH] Added ssl and zlib support --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 50de571..4ac3058 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,11 @@ MAINTAINER Ilya Stepanov ENV DOKUWIKI_VERSION 2016-06-26a ENV MD5_CHECKSUM 9b9ad79421a1bdad9c133e859140f3f2 +RUN apk --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/main/ add \ + libressl2.4-libssl libressl2.4-libcrypto + RUN apk --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ add \ - php7 php7-fpm php7-gd php7-session php7-xml nginx supervisor curl tar + php7 php7-fpm php7-gd php7-openssl php7-session php7-xml php7-zlib nginx supervisor curl tar RUN mkdir -p /run/nginx && \ mkdir -p /var/www /var/dokuwiki-storage/data && \