Skip to content

Commit

Permalink
golang 1.21.13; runc 1.1.14; containerd 1.7.21; cri-tools 1.31.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rpardini committed Sep 9, 2024
1 parent c8e3559 commit c0b5eb9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 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.12"
ARG GOLANG_VERSION="1.21.13"

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -y update
Expand All @@ -21,7 +21,7 @@ RUN go version
# Build runc from source
FROM build as runc
WORKDIR /src
ARG RUNC_VERSION="v1.1.13"
ARG RUNC_VERSION="v1.1.14"
RUN git -c advice.detachedHead=false clone --depth=1 --single-branch --branch=${RUNC_VERSION} https://github.com/opencontainers/runc /src/runc
WORKDIR /src/runc
RUN make
Expand All @@ -37,7 +37,7 @@ RUN make
# Build containerd from source
FROM build as containerd
WORKDIR /src
ARG CONTAINERD_VERSION="v1.7.20"
ARG CONTAINERD_VERSION="v1.7.21"
# 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.1"
ARG CRI_TOOLS_VERSION="v1.31.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 c0b5eb9

Please sign in to comment.