|
|
@ -4,9 +4,10 @@ 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 openssl \
|
|
|
|
RUN apk --update add --virtual build-dep openssl-dev libffi-dev python-dev build-base \
|
|
|
|
&& pip install -r requirements.txt \
|
|
|
|
&& apk add openssl \
|
|
|
|
&& apk del build-dep
|
|
|
|
&& pip install -r requirements.txt \
|
|
|
|
|
|
|
|
&& apk del build-dep
|
|
|
|
|
|
|
|
|
|
|
|
COPY mailu ./mailu
|
|
|
|
COPY mailu ./mailu
|
|
|
|
COPY migrations ./migrations
|
|
|
|
COPY migrations ./migrations
|
|
|
|