From 47526d1b62a3b22903b963975cbfc60911b9d292 Mon Sep 17 00:00:00 2001 From: Trent Maetzold Date: Wed, 11 Mar 2026 12:30:24 -0500 Subject: [PATCH] Switch base image from debian:sid to debian:trixie (stable) --- build/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index 3047940..897e651 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,5 +1,5 @@ -# The build image could be golang, but it currently does not support riscv64. Only debian:sid does, at the time of writing. -FROM debian:sid-slim AS build +# Trixie (Debian 13) supports golang on all target platforms including riscv64. +FROM debian:trixie-slim AS build ARG version @@ -11,7 +11,7 @@ ADD https://github.com/ProtonMail/proton-bridge.git#${version} /build/ WORKDIR /build/ RUN make build-nogui vault-editor -FROM debian:sid-slim +FROM debian:trixie-slim LABEL maintainer="Trent Maetzold " LABEL org.opencontainers.image.source="https://github.com/trent-maetzold/protonmail-bridge-docker"