mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
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
This commit is contained in:
parent
27d201a95b
commit
bd2dc0ea3c
1 changed files with 3 additions and 1 deletions
|
@ -88,7 +88,9 @@ FROM alpine:latest
|
||||||
RUN apk --no-cache -U upgrade && \
|
RUN apk --no-cache -U upgrade && \
|
||||||
apk --no-cache add python3
|
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" && \
|
wget "${GVISOR_URL}/runsc" "${GVISOR_URL}/runsc.sha512" && \
|
||||||
sha512sum -c runsc.sha512 && \
|
sha512sum -c runsc.sha512 && \
|
||||||
rm -f runsc.sha512 && \
|
rm -f runsc.sha512 && \
|
||||||
|
|
Loading…
Reference in a new issue