From 76b7a9a8d942d5dd8141642c10fe6dc5ca2c5a8d Mon Sep 17 00:00:00 2001 From: Brett <54408245+kowh-ai@users.noreply.github.com> Date: Thu, 13 May 2021 10:58:33 +0200 Subject: [PATCH] More updates --- ckan/Dockerfile | 5 ++--- ckan/Dockerfile.dev | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/ckan/Dockerfile b/ckan/Dockerfile index 1680f9c..135c884 100644 --- a/ckan/Dockerfile +++ b/ckan/Dockerfile @@ -26,9 +26,8 @@ RUN if ! [ /usr/share/zoneinfo/${TZ} -ef /etc/localtime ]; then \ # Apply any patches needed to CKAN core or any of the built extensions (not the # runtime mounted ones) # See https://github.com/okfn/docker-ckan#applying-patches -RUN ls -l -RUN pwd -ADD ./patches ${APP_DIR}/ + +ADD ckan/patches ${APP_DIR}/ RUN for d in ${APP_DIR}/patches/*; do \ if [ -d $d ]; then \ diff --git a/ckan/Dockerfile.dev b/ckan/Dockerfile.dev index e0eace5..9c0ead5 100644 --- a/ckan/Dockerfile.dev +++ b/ckan/Dockerfile.dev @@ -25,7 +25,7 @@ RUN if ! [ /usr/share/zoneinfo/${TZ} -ef /etc/localtime ]; then \ # Apply any patches needed to CKAN core or any of the built extensions (not the # runtime mounted ones) # See https://github.com/okfn/docker-ckan#applying-patches -ADD ./patches ${APP_DIR}/ +ADD ckan/patches ${APP_DIR}/ RUN for d in ${APP_DIR}/patches/*; do \ if [ -d $d ]; then \