Skip to content

Commit d27168d

Browse files
authored
[docker] Update all images to debian12/bookworm (#3798)
1 parent 89fd00f commit d27168d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG GO_VERSION=INVALID # This value is not intended to be used but silences a wa
44

55
# ============= Compilation Stage ================
66
# Always use the native platform to ensure fast builds
7-
FROM --platform=$BUILDPLATFORM golang:$GO_VERSION-bullseye AS builder
7+
FROM --platform=$BUILDPLATFORM golang:$GO_VERSION-bookworm AS builder
88

99
WORKDIR /build
1010

@@ -54,7 +54,7 @@ RUN mkdir -p /avalanchego/build
5454
# ============= Cleanup Stage ================
5555
# Commands executed in this stage may be emulated (i.e. very slow) if TARGETPLATFORM and
5656
# BUILDPLATFORM have different arches.
57-
FROM debian:11-slim AS execution
57+
FROM debian:12-slim AS execution
5858

5959
# Maintain compatibility with previous images
6060
COPY --from=builder /avalanchego/build /avalanchego/build

tests/antithesis/Dockerfile.builder-instrumented

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARG GO_VERSION=INVALID # This value isn't intended to be used but silences a war
66
FROM docker.io/antithesishq/go-instrumentor AS instrumentor
77

88
# ============= Instrumentation Stage ================
9-
FROM golang:$GO_VERSION-bullseye
9+
FROM golang:$GO_VERSION-bookworm
1010

1111
WORKDIR /build
1212
# Copy and download dependencies using go mod

tests/antithesis/Dockerfile.builder-uninstrumented

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# to minimize the cost of version changes.
33
ARG GO_VERSION=INVALID # This value is not intended to be used but silences a warning
44

5-
FROM golang:$GO_VERSION-bullseye
5+
FROM golang:$GO_VERSION-bookworm
66

77
WORKDIR /build
88
# Copy and download dependencies using go mod

tests/antithesis/avalanchego/Dockerfile.node

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ WORKDIR /instrumented/customer
1111
RUN ./scripts/build.sh -r
1212

1313
# ============= Cleanup Stage ================
14-
FROM debian:11-slim AS execution
14+
FROM debian:12-slim AS execution
1515

1616
# Install curl to simplify debugging
1717
RUN apt update && apt install curl -y

vms/example/xsvm/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARG GO_VERSION=INVALID # This value is not intended to be used but silences a wa
66
ARG AVALANCHEGO_NODE_IMAGE=INVALID # This value is not intended to be used but silences a warning
77

88
# ============= Compilation Stage ================
9-
FROM golang:$GO_VERSION-bullseye AS builder
9+
FROM golang:$GO_VERSION-bookworm AS builder
1010

1111
WORKDIR /build
1212

0 commit comments

Comments
 (0)