Do not remove openssl during the admin container setup

This commit is contained in:
kaiyou
2017-09-18 21:34:28 +02:00
parent 4ea0030f78
commit e14f93d429

View File

@@ -4,7 +4,8 @@ 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 \
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