|
|
@ -8,8 +8,9 @@ RUN mkdir -p /app
|
|
|
|
WORKDIR /app
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
|
|
|
COPY requirements-prod.txt requirements.txt
|
|
|
|
COPY requirements-prod.txt requirements.txt
|
|
|
|
RUN apk add --no-cache openssl curl \
|
|
|
|
RUN apk add --no-cache libressl curl \
|
|
|
|
&& apk add --no-cache --virtual build-dep openssl-dev libffi-dev python3-dev build-base \
|
|
|
|
&& apk add --no-cache --virtual build-dep \
|
|
|
|
|
|
|
|
libressl-dev libffi-dev python3-dev build-base postgresql-dev mariadb-connector-c-dev \
|
|
|
|
&& pip3 install -r requirements.txt \
|
|
|
|
&& pip3 install -r requirements.txt \
|
|
|
|
&& apk del --no-cache build-dep
|
|
|
|
&& apk del --no-cache build-dep
|
|
|
|
|
|
|
|
|
|
|
|