Update CKAN Dockerfile: update ckanext-schemingdcat to v3.2.4 and ckanext-iepnb to v2.4.1 to fix issues #150
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 - master | |
on: | |
# Trigger the workflow on push or pull request | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
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 |