File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff line change 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
44RUN apt-get update && apt-get install -y --no-install-recommends build-essential git
55
2121RUN echo "Built charon version=$(./charon version)"
2222
2323# Copy final binary into light stage.
24- FROM debian:bookworm -slim
24+ FROM debian:trixie -slim
2525RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates fio wget \
2626 && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
2727ARG GITHUB_SHA=local
You can’t perform that action at this time.
0 commit comments