diff --git a/ckan/Dockerfile b/ckan/Dockerfile index 66836b06..9bf9adc5 100644 --- a/ckan/Dockerfile +++ b/ckan/Dockerfile @@ -9,7 +9,7 @@ ENV TZ=UTC WORKDIR ${APP_DIR} # requirements.txt files fixed until next releases -COPY req_fixes req_fixes +COPY req_fixes ./req_fixes # Extensions ### XLoader - 1.0.1 ### @@ -60,7 +60,7 @@ COPY docker-entrypoint.d/* /docker-entrypoint.d/ COPY setup/who.ini ./ # Apply any patches needed to CKAN core -COPY patches patches +COPY patches ./ RUN for d in $APP_DIR/patches/*; do \ if [ -d $d ]; then \ diff --git a/ckan/Dockerfile.dev b/ckan/Dockerfile.dev index c87c3ad0..68c6ffb5 100644 --- a/ckan/Dockerfile.dev +++ b/ckan/Dockerfile.dev @@ -57,12 +57,12 @@ COPY docker-entrypoint.d/* docker-entrypoint.d/ COPY setup/who.ini ./ # Override start_ckan.sh with DEV sh -COPY setup/start_ckan_development.sh.override start_ckan_development.sh +COPY setup/start_ckan_development.sh.override ./start_ckan_development.sh RUN chmod +x start_ckan_development.sh # Apply any patches needed to CKAN core or any of the built extensions (not the # runtime mounted ones!) -COPY patches patches +COPY patches ./ RUN for d in $APP_DIR/patches/*; do \ if [ -d $d ]; then \ diff --git a/ckan/Dockerfile.ghcr b/ckan/Dockerfile.ghcr index 899a2f11..caa06ca9 100644 --- a/ckan/Dockerfile.ghcr +++ b/ckan/Dockerfile.ghcr @@ -21,7 +21,7 @@ COPY docker-entrypoint.d/* docker-entrypoint.d/ COPY setup/who.ini ./ # Apply any patches needed to CKAN core -COPY patches patches +COPY patches ./ # Updated version of the Dockerfile RUN command that skips applying a patch if a reversed or previously applied patch is detected RUN for d in $APP_DIR/patches/*; do \