Skip to content

Commit 35df7a4

Browse files
authored
*: bumped debian base (#4475)
1 parent d3c1027 commit 35df7a4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build-release-binaries.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: |
3838
docker run --rm --platform linux/amd64 \
3939
-v "$(pwd)":/workspace:z -w /workspace \
40-
golang:${{ steps.setup-go.outputs.go-version }}-bookworm \
40+
golang:${{ steps.setup-go.outputs.go-version }}-trixie \
4141
bash -c "
4242
set -euo pipefail
4343
set -x
@@ -56,7 +56,7 @@ jobs:
5656
run: |
5757
docker run --rm --platform linux/amd64 \
5858
-v "$(pwd)":/workspace:z -w /workspace \
59-
golang:${{ steps.setup-go.outputs.go-version }}-bookworm \
59+
golang:${{ steps.setup-go.outputs.go-version }}-trixie \
6060
bash -c "
6161
set -euo pipefail
6262
set -x

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Container for building Go binary.
2-
FROM golang:1.26.2-bookworm AS builder
2+
FROM golang:1.26.2-trixie AS builder
33
# Install dependencies
44
RUN apt-get update && apt-get install -y --no-install-recommends build-essential git
55

@@ -21,7 +21,7 @@ RUN \
2121
RUN echo "Built charon version=$(./charon version)"
2222

2323
# Copy final binary into light stage.
24-
FROM debian:bookworm-slim
24+
FROM debian:trixie-slim
2525
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates fio wget \
2626
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
2727
ARG GITHUB_SHA=local

0 commit comments

Comments
 (0)