From 5197593d4a3ac79717b4cc15b3efabb7b012c257 Mon Sep 17 00:00:00 2001 From: jackyu Date: Fri, 19 Apr 2024 12:22:06 +0800 Subject: [PATCH] update base-podman dockerfile --- base/podman/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/base/podman/Dockerfile b/base/podman/Dockerfile index 3b8b5b4..c411093 100644 --- a/base/podman/Dockerfile +++ b/base/podman/Dockerfile @@ -65,11 +65,12 @@ ENV EXCLUDE_DOCKER 1 RUN ./hack/install_utils.sh && rm -rf ./* # Install runc for podman -RUN git clone -b v1.1.10 https://github.com/opencontainers/runc.git $(go env GOPATH)/src/github.com/opencontainers/runc && \ - cd $(go env GOPATH)/src/github.com/opencontainers/runc && make BUILDTAGS="selinux seccomp" && mv runc /usr/bin/runc +RUN wget https://github.com/opencontainers/runc/releases/download/v1.1.10/runc.arm64 && \ + mv runc.arm64 /usr/bin/runc && chmod +x /usr/bin/runc # Install conmon for podman -RUN wget https://github.com/containers/conmon/releases/download/v2.1.0/conmon.amd64 && mv conmon.amd64 /usr/bin/conmon && chmod +x /usr/bin/conmon +RUN wget https://github.com/containers/conmon/releases/download/v2.1.0/conmon.amd64 && \ + mv conmon.amd64 /usr/bin/conmon && chmod +x /usr/bin/conmon # Install podman RUN wget https://github.com/containers/podman/archive/refs/tags/v3.4.4.tar.gz && \