Skip to content

Commit b9ceb7d

Browse files
committed
Dockerfile: update runc binary to v1.3.4
- release notes: https://github.com/opencontainers/runc/releases/tag/v1.3.4 - full diff: opencontainers/[email protected] This version bump aims to fix a regression in runc v1.3.3, which caused /dev/shm to have inappropriate permissions exposed to containers: * opencontainers/runc#4971 * opencontainers/runc#4976 Signed-off-by: Luciano Ciccariello <[email protected]>
1 parent 4ff8942 commit b9ceb7d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ RUN git init . && git remote add origin "https://github.com/opencontainers/runc.
254254
# This version should usually match the version that is used by the containerd version
255255
# that is used. If you need to update runc, open a pull request in the containerd
256256
# project first, and update both after that is merged.
257-
ARG RUNC_VERSION=v1.3.3
257+
ARG RUNC_VERSION=v1.3.4
258258
RUN git fetch -q --depth 1 origin "${RUNC_VERSION}" +refs/tags/*:refs/tags/* && git checkout -q FETCH_HEAD
259259

260260
FROM base AS runc-build

hack/dockerfile/install/runc.installer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set -e
77
# The version of runc should match the version that is used by the containerd
88
# version that is used. If you need to update runc, open a pull request in
99
# the containerd project first, and update both after that is merged.
10-
: "${RUNC_VERSION:=v1.3.3}"
10+
: "${RUNC_VERSION:=v1.3.4}"
1111

1212
install_runc() {
1313
RUNC_BUILDTAGS="${RUNC_BUILDTAGS:-"seccomp"}"

0 commit comments

Comments
 (0)