Fix docker build NOCHANGELOG
This commit is contained in:
parent
2e2e0b74ba
commit
6046dce55a
|
@ -34,7 +34,7 @@ RUN set -eux; \
|
|||
postgresql-dev \
|
||||
zlib-dev \
|
||||
py3-cryptography=38.0.3-r1 \
|
||||
py3-lxml=4.9.2-r0 \
|
||||
py3-lxml=4.9.3-r1 \
|
||||
py3-pillow=9.3.0-r0 \
|
||||
py3-psycopg2=2.9.5-r0 \
|
||||
py3-watchfiles=0.18.1-r0 \
|
||||
|
@ -58,7 +58,7 @@ RUN set -eux; \
|
|||
grep -Ev 'cryptography|lxml|pillow|psycopg2|watchfiles' /requirements.txt \
|
||||
| pip3 install -r /dev/stdin \
|
||||
cryptography==38.0.3 \
|
||||
lxml==4.9.2 \
|
||||
lxml==4.9.3 \
|
||||
pillow==9.3.0 \
|
||||
psycopg2==2.9.5 \
|
||||
watchfiles==0.18.1
|
||||
|
@ -66,13 +66,13 @@ RUN set -eux; \
|
|||
ARG install_dev_deps=0
|
||||
RUN set -eux; \
|
||||
if [ "$install_dev_deps" = "1" ] ; then \
|
||||
grep -Ev 'cryptography|lxml|pillow|psycopg2|watchfiles' /dev-requirements.txt \
|
||||
| pip3 install -r /dev/stdin \
|
||||
cryptography==38.0.3 \
|
||||
lxml==4.9.2 \
|
||||
pillow==9.3.0 \
|
||||
psycopg2==2.9.5 \
|
||||
watchfiles==0.18.1; \
|
||||
grep -Ev 'cryptography|lxml|pillow|psycopg2|watchfiles' /dev-requirements.txt \
|
||||
| pip3 install -r /dev/stdin \
|
||||
cryptography==38.0.3 \
|
||||
lxml==4.9.3 \
|
||||
pillow==9.3.0 \
|
||||
psycopg2==2.9.5 \
|
||||
watchfiles==0.18.1; \
|
||||
fi
|
||||
|
||||
FROM alpine:3.17 as image
|
||||
|
@ -93,7 +93,7 @@ RUN set -eux; \
|
|||
libxml2 \
|
||||
libxslt \
|
||||
py3-cryptography=38.0.3-r1 \
|
||||
py3-lxml=4.9.2-r0 \
|
||||
py3-lxml=4.9.3-r1 \
|
||||
py3-pillow=9.3.0-r0 \
|
||||
py3-psycopg2=2.9.5-r0 \
|
||||
py3-watchfiles=0.18.1-r0 \
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue