From e14f93d4291b96273773ddad457b94efc8f3f387 Mon Sep 17 00:00:00 2001 From: kaiyou Date: Mon, 18 Sep 2017 21:34:28 +0200 Subject: [PATCH] Do not remove openssl during the admin container setup --- admin/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/admin/Dockerfile b/admin/Dockerfile index df6a92c8..971b407b 100644 --- a/admin/Dockerfile +++ b/admin/Dockerfile @@ -4,9 +4,10 @@ RUN mkdir -p /app WORKDIR /app COPY requirements-prod.txt requirements.txt -RUN apk --update add --virtual build-dep openssl-dev libffi-dev python-dev build-base openssl \ - && pip install -r requirements.txt \ - && apk del build-dep +RUN apk --update add --virtual build-dep openssl-dev libffi-dev python-dev build-base \ + && apk add openssl \ + && pip install -r requirements.txt \ + && apk del build-dep COPY mailu ./mailu COPY migrations ./migrations