Updating our Docker files to include libzip and libcurl4 (#121) #5
This file contains hidden or 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: Publish Docker | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - 'main' | |
| paths: | |
| - 'etc/Dockerfile.debian.bookworm' | |
| jobs: | |
| docker: | |
| name: Build Docker Image | |
| permissions: | |
| packages: write | |
| timeout-minutes: 45 | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| make_target: docker-amd64-ci | |
| - os: buildjet-16vcpu-ubuntu-2204-arm | |
| make_target: docker-arm64-ci | |
| steps: | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Check out code | |
| uses: actions/checkout@v3 | |
| - name: Build and Push | |
| run: make ${{ matrix.make_target }} |