From bd2dc0ea3c39dbff15653e4cfcc89fcf7bad25e3 Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Mon, 23 Sep 2024 18:03:57 +0300 Subject: [PATCH] Pin gVisor to the last working release Temporarily pin gVisor to the latest working version (`release-20240826.0`), since the latest one breaks our container image. Refs #928 --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9988660..3c33f4f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -88,7 +88,9 @@ FROM alpine:latest RUN apk --no-cache -U upgrade && \ apk --no-cache add python3 -RUN GVISOR_URL="https://storage.googleapis.com/gvisor/releases/release/latest/$(uname -m)"; \ +# 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)"; \ wget "${GVISOR_URL}/runsc" "${GVISOR_URL}/runsc.sha512" && \ sha512sum -c runsc.sha512 && \ rm -f runsc.sha512 && \