From 63cecbb1119ba6a7d0fdc1c14508f2bda8ad80ce Mon Sep 17 00:00:00 2001 From: Bruno Willenborg Date: Tue, 28 Feb 2023 17:55:34 +0100 Subject: [PATCH] dropped unnecessary file download --- sddi-base/Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/sddi-base/Dockerfile b/sddi-base/Dockerfile index 61dc6f1..fb1a7b3 100644 --- a/sddi-base/Dockerfile +++ b/sddi-base/Dockerfile @@ -67,8 +67,6 @@ USER root ARG CKAN_EXT_SDDI_VERSION="2.9-support" COPY --from=extbuild /wheels /srv/app/ext_wheels COPY --chown=ckan:ckan afterinit.d/ ${APP_DIR}/docker-afterinit.d/ -ADD https://raw.githubusercontent.com/tum-gis/ckanext-grouphierarchy-sddi/${CKAN_EXT_SDDI_VERSION}/ckanext/grouphierarchy/init_data.json \ - /usr/lib/python3.8/site-packages/ckanext/grouphierarchy/init_data.json # Install runtime dependencies RUN set -ex && \ @@ -93,7 +91,6 @@ RUN set -ex && \ RUN set -ex && \ ckan config-tool "${APP_DIR}/production.ini" "ckan.plugins = ${CKAN__PLUGINS}" && \ chown -R ckan:ckan /srv/app && \ - chown -Rv ckan:ckan /usr/lib/python3.8/site-packages/ckanext/grouphierarchy/init_data.json && \ # Remove wheels rm -rf /srv/app/ext_wheels