From 36621aba8108953660f560df232196693154aa28 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sun, 22 Mar 2026 17:12:36 +0100 Subject: [PATCH] Update base image from bookworm to trixie --- build-base/Dockerfile | 2 +- msys2/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build-base/Dockerfile b/build-base/Dockerfile index 6c331fe..b6cc063 100644 --- a/build-base/Dockerfile +++ b/build-base/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:bookworm AS build +FROM debian:trixie AS build # Install WINE build dependencies RUN sed -i 's/^Types: deb$/Types: deb deb-src/' /etc/apt/sources.list.d/debian.sources diff --git a/msys2/Dockerfile b/msys2/Dockerfile index 74511fe..e0c34c3 100644 --- a/msys2/Dockerfile +++ b/msys2/Dockerfile @@ -5,7 +5,7 @@ RUN apt update && apt install -y zstd curl RUN mkdir -p /tmp/msys64 RUN curl --fail -L 'https://github.com/msys2/msys2-installer/releases/download/nightly-x86_64/msys2-base-x86_64-latest.tar.zst' | tar -x --zstd -C /tmp/ -FROM debian:bookworm +FROM debian:trixie # Copy over wine and install the runtime deps RUN apt update \