Skip to content

Commit

Permalink
Building multiarch container: try using buildah instead of podman
Browse files Browse the repository at this point in the history
  • Loading branch information
emarsden committed Nov 27, 2023
1 parent a087364 commit ade412f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
id: build-image
run: |
podman manifest create dash-mpd-cli
buildah build . -f etc/Containerfile_linux_amd64 --arch amd64 --tag dash-mpd-cli-linux-amd64 --manifest dash-mpd-cli
buildah build . -f etc/Containerfile_linux_aarch64 --arch arm64/v8 --tag dash-mpd-cli-linux-aarch64 --manifest dash-mpd-cli
buildah build -f etc/Containerfile_linux_amd64 --arch amd64 --tag dash-mpd-cli-linux-amd64 --manifest dash-mpd-cli .
buildah build -f etc/Containerfile_linux_aarch64 --arch arm64/v8 --tag dash-mpd-cli-linux-aarch64 --manifest dash-mpd-cli .
- name: Push container image
id: push-to-registry
Expand Down

0 comments on commit ade412f

Please sign in to comment.