From 54276f702ff99134a4504d71038fc5a4ed70be81 Mon Sep 17 00:00:00 2001 From: Red-Thirten Date: Sat, 17 Jun 2023 19:37:14 -0700 Subject: [PATCH] Fix Bookworm specific packages If we are going to lock the base image to Bullseye, we need to put the original libtbb2 packages back. --- games/arma3/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/games/arma3/Dockerfile b/games/arma3/Dockerfile index bc9bdf2..d6860f3 100644 --- a/games/arma3/Dockerfile +++ b/games/arma3/Dockerfile @@ -27,8 +27,8 @@ RUN dpkg --add-architecture i386 \ lib32stdc++6 \ libnss-wrapper \ libnss-wrapper:i386 \ - libtbbmalloc2 \ - libtbbmalloc2:i386 + libtbb2 \ + libtbb2:i386 ## Configure locale RUN update-locale lang=en_US.UTF-8 \