mirror of
https://github.com/Mailu/Mailu.git
synced 2025-05-15 22:16:39 +02:00
Do not remove openssl when purging build deps, fixes #481
This commit is contained in:
parent
a47ba3474c
commit
b6c76a5e39
@ -4,7 +4,8 @@ RUN mkdir -p /app
|
|||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY requirements-prod.txt requirements.txt
|
COPY requirements-prod.txt requirements.txt
|
||||||
RUN apk --update add --virtual build-dep openssl-dev libffi-dev python-dev build-base \
|
RUN apk add --no-cache openssl \
|
||||||
|
&& apk add --no-cache --virtual build-dep openssl-dev libffi-dev python-dev build-base \
|
||||||
&& pip install -r requirements.txt \
|
&& pip install -r requirements.txt \
|
||||||
&& apk del build-dep
|
&& apk del build-dep
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user