Skip to content

Commit a056dc2

Browse files
build(deps): bump golang from 1.25-bookworm to 1.26-bookworm
Bumps golang from 1.25-bookworm to 1.26-bookworm. --- updated-dependencies: - dependency-name: golang dependency-version: 1.26-bookworm dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 3070538 commit a056dc2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ ARG CRI_TOOLS_VERSION=v1.30.1
3434
# Legacy builder that doesn't support TARGETARCH should set this explicitly using --build-arg.
3535
# If TARGETARCH isn't supported by the builder, the default value is "amd64".
3636

37-
FROM golang:1.25-bookworm AS golang-base
37+
FROM golang:1.26-bookworm AS golang-base
3838

3939
# Build containerd
40-
FROM --platform=$BUILDPLATFORM golang:1.25-bookworm AS containerd-dev
40+
FROM --platform=$BUILDPLATFORM golang:1.26-bookworm AS containerd-dev
4141
ARG CONTAINERD_VERSION
4242
ARG TARGETARCH
4343
RUN git clone -b ${CONTAINERD_VERSION} --depth 1 \
@@ -46,7 +46,7 @@ RUN git clone -b ${CONTAINERD_VERSION} --depth 1 \
4646
GOARCH=$TARGETARCH make && DESTDIR=/out/ PREFIX= make install
4747

4848
# Build containerd with builtin stargz snapshotter
49-
FROM --platform=$BUILDPLATFORM golang:1.25-bookworm AS containerd-snapshotter-dev
49+
FROM --platform=$BUILDPLATFORM golang:1.26-bookworm AS containerd-snapshotter-dev
5050
ARG CONTAINERD_VERSION
5151
ARG TARGETARCH
5252
COPY . $GOPATH/src/github.com/containerd/stargz-snapshotter
@@ -69,7 +69,7 @@ RUN git clone -b ${CONTAINERD_VERSION} --depth 1 \
6969
make vendor && GOARCH=$TARGETARCH make && DESTDIR=/out/ PREFIX= make install
7070

7171
# Build runc
72-
FROM golang:1.25-bookworm AS runc-dev
72+
FROM golang:1.26-bookworm AS runc-dev
7373
ARG RUNC_VERSION
7474
RUN apt-get update -y && apt-get install -y libseccomp-dev && \
7575
git clone -b ${RUNC_VERSION} --depth 1 \
@@ -78,7 +78,7 @@ RUN apt-get update -y && apt-get install -y libseccomp-dev && \
7878
make && make install PREFIX=/out/
7979

8080
# Build stargz snapshotter
81-
FROM --platform=$BUILDPLATFORM golang:1.25-bookworm AS snapshotter-dev
81+
FROM --platform=$BUILDPLATFORM golang:1.26-bookworm AS snapshotter-dev
8282
ARG TARGETARCH
8383
ARG GOARM
8484
ARG SNAPSHOTTER_BUILD_FLAGS
@@ -112,7 +112,7 @@ RUN apt-get update -y && apt-get install -y libseccomp-dev libgpgme-dev && \
112112

113113
# Build CRI-O
114114
# FROM golang-base AS cri-o-dev
115-
FROM golang:1.25-bookworm AS cri-o-dev
115+
FROM golang:1.26-bookworm AS cri-o-dev
116116
ARG CRIO_VERSION
117117
RUN apt-get update -y && apt-get install -y libseccomp-dev libgpgme-dev && \
118118
git clone https://github.com/cri-o/cri-o $GOPATH/src/github.com/cri-o/cri-o && \

0 commit comments

Comments
 (0)