From 5bff305192badec232694221b32046e241baa6b8 Mon Sep 17 00:00:00 2001 From: bnewc <114115883+bnewc@users.noreply.github.com> Date: Tue, 24 Sep 2024 20:28:00 -0500 Subject: [PATCH] set gVisor release to latest --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 25e9983ae..5d547f6e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -100,7 +100,7 @@ FROM alpine:latest RUN apk --no-cache -U upgrade && \ apk --no-cache add python3 -RUN GVISOR_URL="https://storage.googleapis.com/gvisor/releases/release/20240826/$(uname -m)"; \ +RUN GVISOR_URL="https://storage.googleapis.com/gvisor/releases/release/latest/$(uname -m)"; \ wget "${GVISOR_URL}/runsc" "${GVISOR_URL}/runsc.sha512" && \ sha512sum -c runsc.sha512 && \ rm -f runsc.sha512 && \