From 87cbeacecd718acc9532bf2f7e8826fd6d084096 Mon Sep 17 00:00:00 2001 From: kaiyou Date: Sun, 24 Sep 2017 12:05:38 +0200 Subject: [PATCH] Do not install openssl in the admin container anymore --- admin/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/admin/Dockerfile b/admin/Dockerfile index 971b407b..78fa753e 100644 --- a/admin/Dockerfile +++ b/admin/Dockerfile @@ -5,7 +5,6 @@ WORKDIR /app COPY requirements-prod.txt requirements.txt 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