From 7a7c964ba1fbad00e50d76c6f90827268b9922a8 Mon Sep 17 00:00:00 2001 From: mjanez <96422458+mjanez@users.noreply.github.com> Date: Mon, 4 Nov 2024 23:13:12 +0100 Subject: [PATCH] Update ckanext-schemingdcat to version 4.2.2 in Dockerfile --- ckan/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ckan/Dockerfile b/ckan/Dockerfile index 440f8875..59ad06d5 100644 --- a/ckan/Dockerfile +++ b/ckan/Dockerfile @@ -23,7 +23,7 @@ COPY req_fixes req_fixes ## PDFView - 0.0.8 ## ## Fluent - v1.0.1 (mjanez/Forked stable version) ## ## OpenAPI - v1.0.0 (mjanez stable version) ## -## Scheming DCAT - v4.2.1 (mjanez/GeoDCAT-AP/NTI-RISP extended version) ## +## Scheming DCAT - v4.2.2 (mjanez/GeoDCAT-AP/NTI-RISP extended version) ## RUN echo ${TZ} > /etc/timezone && \ if ! [ /usr/share/zoneinfo/${TZ} -ef /etc/localtime ]; then cp /usr/share/zoneinfo/${TZ} /etc/localtime; fi && \ # Install patch utility @@ -60,7 +60,7 @@ RUN echo ${TZ} > /etc/timezone && \ echo "mjanez/ckanext-openapi" && \ pip3 install --no-cache-dir -e git+https://github.com/mjanez/ckanext-openapi.git@v1.0.0#egg=ckanext-openapi && \ echo "mjanez/ckanext-schemingdcat" && \ - pip3 install --no-cache-dir -e git+https://github.com/mjanez/ckanext-schemingdcat.git@v4.2.1#egg=ckanext_schemingdcat && \ + pip3 install --no-cache-dir -e git+https://github.com/mjanez/ckanext-schemingdcat.git@v4.2.2#egg=ckanext_schemingdcat && \ pip3 install --no-cache-dir -r ${APP_DIR}/src/ckanext-schemingdcat/requirements.txt && \ # Remove system cache apt-get clean && \