Skip to content

Commit c078f9f

Browse files
fix: switch Go base from bullseye to bookworm (#74)
golang:1.26.3 dropped the bullseye (Debian 11) variant — only alpine, bookworm (Debian 12), and trixie (Debian 13) variants are published. release.yml fails for perf and ruby with 'golang:1.26.3-bullseye: not found'. Agent has no cgo, so the produced binary is statically linked; runtime stages (ruby's bitnami/minideb:bullseye, perf's alpine:3.23.4) are unaffected.
1 parent 7efe60e commit c078f9f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

docker/jvm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG JAVA_VERSION_TAG=21
2-
FROM golang:1.26.3-bullseye AS agentbuild
2+
FROM golang:1.26.3-bookworm AS agentbuild
33
WORKDIR /go/src/github.com/nudgebee/application-profiler
44
COPY . /go/src/github.com/nudgebee/application-profiler
55
RUN go get -d -v ./...

docker/perf/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.26.3-bullseye AS agentbuild
1+
FROM golang:1.26.3-bookworm AS agentbuild
22
WORKDIR /go/src/github.com/nudgebee/application-profiler
33
COPY . /go/src/github.com/nudgebee/application-profiler
44
RUN go get -d -v ./...

docker/ruby/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.26.3-bullseye AS agentbuild
1+
FROM golang:1.26.3-bookworm AS agentbuild
22
WORKDIR /go/src/github.com/nudgebee/application-profiler
33
COPY . /go/src/github.com/nudgebee/application-profiler
44
RUN go get -d -v ./...

0 commit comments

Comments
 (0)