Merge pull request #187 from knaw-huc/snyk-fix-d081d0c2012763ab3347dc… #268
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 🛠️ | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- name: Build docker images | |
run: | | |
. examples/development/docker-compose.env | |
cp examples/development/docker-compose-dev.yml . | |
docker-compose -f docker-compose-dev.yml build |