Update CKAN Dockerfile: upgrade IEPNB to v2.4.2 for harvester fixes #130
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build CKAN Docker auxiliary images - ckan-*.*.* | |
on: | |
# Trigger the workflow on push or pull request | |
push: | |
branches: | |
- 'ckan-*.*.*' | |
pull_request: | |
branches: | |
- ckan-*.*.* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Apache HTTP Server build | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./apache | |
file: ./apache/Dockerfile | |
push: false | |
tags: opendatagis/ckan-docker-apache:test-build-only | |
- name: PostgreSQL build | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./postgresql | |
file: ./postgresql/Dockerfile | |
push: false | |
tags: opendatagis/ckan-docker-postgresql:test-build-only | |
- name: Solr build | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./solr | |
file: ./solr/Dockerfile | |
push: false | |
tags: opendatagis/ckan-docker-solr:test-build-only | |
- name: ckan-pycsw build | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./ckan-pycsw | |
file: ./ckan-pycsw/Dockerfile | |
push: false | |
tags: opendatagis/ckan-docker-pycsw:test-build-only |