Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/build-release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: |
docker run --rm --platform linux/amd64 \
-v "$(pwd)":/workspace:z -w /workspace \
golang:${{ steps.setup-go.outputs.go-version }}-bookworm \
golang:${{ steps.setup-go.outputs.go-version }}-trixie \
bash -c "
set -euo pipefail
set -x
Expand All @@ -56,7 +56,7 @@ jobs:
run: |
docker run --rm --platform linux/amd64 \
-v "$(pwd)":/workspace:z -w /workspace \
golang:${{ steps.setup-go.outputs.go-version }}-bookworm \
golang:${{ steps.setup-go.outputs.go-version }}-trixie \
bash -c "
set -euo pipefail
set -x
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Container for building Go binary.
FROM golang:1.26.2-bookworm AS builder
FROM golang:1.26.2-trixie AS builder
# Install dependencies
RUN apt-get update && apt-get install -y --no-install-recommends build-essential git

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

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