✨ Add libffi-dev
to Docker build to resolve local build issues
#451
Workflow file for this run
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: Test Dockerfile | |
on: pull_request | |
jobs: | |
dockerfile-test: | |
name: container-structure-test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build | |
run: docker build -t image-test . | |
- name: Check it exists | |
run: docker images | |
- name: Run docker tests | |
uses: docker://gcr.io/gcp-runtimes/container-structure-test:latest | |
with: | |
args: "test --image image-test --config docker-test.yaml" |