Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Debian Trixie container images (instead of Sid) #215

Merged
merged 5 commits into from
Feb 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/build-and-publish-bootstrap-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ permissions: read-all
jobs:
build_and_publish:
name: Build and publish image
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
permissions:
packages: write
steps:
Expand All @@ -29,9 +29,6 @@ jobs:

- name: Set up QEMU
uses: docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25 # v3.4.0
# (temporary) workaround for https://github.com/docker/setup-qemu-action/issues/198
with:
image: tonistiigi/binfmt:qemu-v7.0.0-28

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3.9.0
Expand Down Expand Up @@ -59,7 +56,7 @@ jobs:
- name: Build and push to GitHub Packages
uses: docker/build-push-action@c56af957549030174b10d6867f20e78cfd7debc5 #v3.2.0
with:
tags: ghcr.io/${{ env.REPOSITORY_OWNER }}/bootstrap-prefix:debian-sid
file: Dockerfile.bootstrap-prefix-debian-sid
tags: ghcr.io/${{ env.REPOSITORY_OWNER }}/bootstrap-prefix:debian-trixie
file: Dockerfile.bootstrap-prefix-debian-trixie
platforms: linux/amd64, linux/arm64, linux/riscv64
push: ${{ github.event_name != 'pull_request' }}
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Should move to Trixie whenever riscv64 images are available
FROM debian:sid-20240330-slim
FROM debian:trixie-20250224-slim

COPY bootstrap-prefix.sh /usr/local/bin/bootstrap-prefix.sh

Expand Down
Loading