More updates

This commit is contained in:
Brett 2021-05-13 16:42:11 +02:00
parent 4e5182c507
commit 51765e0e8b
2 changed files with 29 additions and 29 deletions

View File

@ -22,37 +22,37 @@ jobs:
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v1 uses: docker/setup-qemu-action@v1
#- name: NGINX build - name: NGINX build
# uses: docker/build-push-action@v2 uses: docker/build-push-action@v2
# with: with:
# context: nginx context: ./nginx
# file: nginx/Dockerfile file: ./nginx/Dockerfile
# push: false push: false
# tags: kowhai/ckan-docker-nginx:testing-only tags: kowhai/ckan-docker-nginx:testing-only
#- name: PostgreSQL build - name: PostgreSQL build
# uses: docker/build-push-action@v2 uses: docker/build-push-action@v2
# with: with:
# context: postgresql context: ./postgresql
# file: postgresql/Dockerfile file: ./postgresql/Dockerfile
# push: false push: false
# tags: kowhai/ckan-docker-postgresql:testing-only tags: kowhai/ckan-docker-postgresql:testing-only
#- name: Solr build - name: Solr build
# uses: docker/build-push-action@v2 uses: docker/build-push-action@v2
# with: with:
# context: solr context: ./solr
# file: solr/Dockerfile file: ./solr/Dockerfile
# push: false push: false
# tags: kowhai/ckan-docker-solr:testing-only tags: kowhai/ckan-docker-solr:testing-only
#- name: DataPusher build - name: DataPusher build
# uses: docker/build-push-action@v2 uses: docker/build-push-action@v2
# with: with:
# context: datapusher context: ./datapusher
# file: datapusher/Dockerfile file: ./datapusher/Dockerfile
# push: false push: false
# tags: kowhai/ckan-docker-datapusher:testing-only tags: kowhai/ckan-docker-datapusher:testing-only
- name: CKAN build - name: CKAN build
uses: docker/build-push-action@v2 uses: docker/build-push-action@v2

View File

@ -26,7 +26,7 @@ RUN if ! [ /usr/share/zoneinfo/${TZ} -ef /etc/localtime ]; then \
# runtime mounted ones) # runtime mounted ones)
# See https://github.com/okfn/docker-ckan#applying-patches # See https://github.com/okfn/docker-ckan#applying-patches
COPY ./patches ${APP_DIR}/patches COPY patches ${APP_DIR}/patches
RUN for d in ${APP_DIR}/patches/*; do \ RUN for d in ${APP_DIR}/patches/*; do \
if [ -d $d ]; then \ if [ -d $d ]; then \