From 36e3d331744e3a971e372a62c77b08ff85845ef5 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Mon, 19 Dec 2022 16:23:10 +0100 Subject: [PATCH] chore(api): Bump lxml version to 4.9.2 --- api/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/api/Dockerfile b/api/Dockerfile index 7e6868cee..354072b2d 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -22,7 +22,7 @@ RUN \ python3-dev \ py3-psycopg2=2.9.5-r0 \ py3-cryptography=38.0.3-r0 \ - py3-lxml=4.9.1-r0 \ + py3-lxml=4.9.2-r0 \ py3-pillow=9.3.0-r0 \ py3-watchfiles=0.18.1-r0 \ libldap \ @@ -54,14 +54,14 @@ RUN \ # is why we need to use the packages shipped by Alpine Linux. # Since poetry does not allow in-place dependency pinning, we need # to install the deps using pip. - grep -Ev 'cryptography|watchfiles|lxml|pillow|psycopg2' /requirements.txt | pip3 install -r /dev/stdin cryptography==38.0.3 watchfiles==0.18.1 lxml==4.9.1 pillow==9.3.0 psycopg2==2.9.5 && \ + grep -Ev 'cryptography|watchfiles|lxml|pillow|psycopg2' /requirements.txt | pip3 install -r /dev/stdin cryptography==38.0.3 watchfiles==0.18.1 lxml==4.9.2 pillow==9.3.0 psycopg2==2.9.5 && \ rm -rf "$PIP_DOWNLOAD_CACHE" ARG install_dev_deps=0 RUN \ if [ "$install_dev_deps" = "1" ] ; then \ echo "Installing dev dependencies" && \ - grep -Ev 'cryptography|watchfiles|lxml|pillow|psycopg2' /dev-requirements.txt | pip3 install -r /dev/stdin cryptography==38.0.3 watchfiles==0.18.1 lxml==4.9.1 pillow==9.3.0 psycopg2==2.9.5 && \ + grep -Ev 'cryptography|watchfiles|lxml|pillow|psycopg2' /dev-requirements.txt | pip3 install -r /dev/stdin cryptography==38.0.3 watchfiles==0.18.1 lxml==4.9.2 pillow==9.3.0 psycopg2==2.9.5 && \ rm -rf "$PIP_DOWNLOAD_CACHE" \ ; else \ echo "Skipping dev deps installation" \ @@ -86,7 +86,7 @@ RUN apk add --no-cache \ libxslt \ py3-psycopg2=2.9.5-r0 \ py3-cryptography=38.0.3-r0 \ - py3-lxml=4.9.1-r0 \ + py3-lxml=4.9.2-r0 \ py3-pillow=9.3.0-r0 \ py3-watchfiles=0.18.1-r0 \ libldap