Skip to content

Commit

Permalink
golang 1.21.12; containerd 1.7.20; cri-tools 1.30.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rpardini committed Aug 3, 2024
1 parent 8520421 commit c8e3559
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM ${BASE_IMAGE} as build

ARG OS_ARCH="amd64"
# See https://go.dev/dl/
ARG GOLANG_VERSION="1.21.11"
ARG GOLANG_VERSION="1.21.12"

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -y update
Expand Down Expand Up @@ -37,7 +37,7 @@ RUN make
# Build containerd from source
FROM build as containerd
WORKDIR /src
ARG CONTAINERD_VERSION="v1.7.18"
ARG CONTAINERD_VERSION="v1.7.20"
# When changing above, also change the version in the debian/control file
RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${CONTAINERD_VERSION} https://github.com/containerd/containerd /src/containerd
WORKDIR /src/containerd
Expand All @@ -62,7 +62,7 @@ RUN make
# Build cri-tools from source
FROM build as cri-tools
WORKDIR /src
ARG CRI_TOOLS_VERSION="v1.30.0"
ARG CRI_TOOLS_VERSION="v1.30.1"
RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${CRI_TOOLS_VERSION} https://github.com/kubernetes-sigs/cri-tools /src/cri-tools
WORKDIR /src/cri-tools
RUN make
Expand Down

0 comments on commit c8e3559

Please sign in to comment.