Skip to content

Commit 5388cce

Browse files
authored
Merge pull request #215 from bedroge/sid_to_trixie
Use Debian Trixie container images (instead of Sid)
2 parents 5c9b01c + 4d1fc05 commit 5388cce

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/build-and-publish-bootstrap-container.yml

+3-6
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ permissions: read-all
2020
jobs:
2121
build_and_publish:
2222
name: Build and publish image
23-
runs-on: ubuntu-latest
23+
runs-on: ubuntu-24.04-arm
2424
permissions:
2525
packages: write
2626
steps:
@@ -29,9 +29,6 @@ jobs:
2929

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

3633
- name: Set up Docker Buildx
3734
uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3.9.0
@@ -59,7 +56,7 @@ jobs:
5956
- name: Build and push to GitHub Packages
6057
uses: docker/build-push-action@c56af957549030174b10d6867f20e78cfd7debc5 #v3.2.0
6158
with:
62-
tags: ghcr.io/${{ env.REPOSITORY_OWNER }}/bootstrap-prefix:debian-sid
63-
file: Dockerfile.bootstrap-prefix-debian-sid
59+
tags: ghcr.io/${{ env.REPOSITORY_OWNER }}/bootstrap-prefix:debian-trixie
60+
file: Dockerfile.bootstrap-prefix-debian-trixie
6461
platforms: linux/amd64, linux/arm64, linux/riscv64
6562
push: ${{ github.event_name != 'pull_request' }}

Dockerfile.bootstrap-prefix-debian-sid Dockerfile.bootstrap-prefix-debian-trixie

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Should move to Trixie whenever riscv64 images are available
2-
FROM debian:sid-20240330-slim
1+
FROM debian:trixie-20250224-slim
32

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

0 commit comments

Comments
 (0)