From c4bb7c28c882e2552fe09585232d984d88f3ff50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Sat, 9 Nov 2024 21:38:32 +0100 Subject: [PATCH] Unpin gVisor, now that upstream is able to support Linux Yama Mode 2 Fixes #298 --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 83896eb..c89c5a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -74,9 +74,7 @@ FROM alpine:latest RUN apk --no-cache -U upgrade && \ apk --no-cache add python3 -# Temporarily pin gVisor to the latest working version (release-20240826.0). -# See: https://github.com/freedomofpress/dangerzone/issues/928 -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 && \