From cfe82a300d9cee8324591bbb16e7c5369983a7b4 Mon Sep 17 00:00:00 2001 From: Luca Razvan Date: Fri, 15 Mar 2019 12:12:28 +0200 Subject: [PATCH] fix error 500 for some html emails and for 2fa fix error 500 for some html emails and for 2fa --- image/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/image/Dockerfile b/image/Dockerfile index 8f36e52..8351ad0 100644 --- a/image/Dockerfile +++ b/image/Dockerfile @@ -8,6 +8,7 @@ RUN set -e \ && apk add --no-cache \ supervisor \ nginx \ + composer \ # GD freetype libpng libjpeg-turbo \ && apk add --no-cache --virtual .build-deps \ @@ -31,7 +32,9 @@ RUN set -e \ && mv cypht-master/* ${CYPHT_DEST} \ && cd /tmp \ && rm -rf cypht-temp \ - && apk del .build-deps + && apk del .build-deps \ + && cd ${CYPHT_DEST} \ + && composer install COPY nginx.conf /etc/nginx/nginx.conf COPY supervisord.conf /etc/supervisord.conf