From 4a0de42544b6348bd0d0ef25b5ee3643af6dd2cc Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 20 Oct 2021 10:59:54 +0300 Subject: [PATCH] installers(debian) : temporarily add lib32gcc back We actually need this until the egg install script for source is updated to install the correct bullseye lib32gcc-s1 instead of the wrong debian 10 package --- installers/debian/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/debian/Dockerfile b/installers/debian/Dockerfile index cf6bde9..658b13e 100644 --- a/installers/debian/Dockerfile +++ b/installers/debian/Dockerfile @@ -32,4 +32,4 @@ ENV DEBIAN_FRONTEND=noninteractive RUN dpkg --add-architecture i386 \ && apt update \ && apt upgrade -y \ - && apt -y --no-install-recommends install ca-certificates curl libsdl2-2.0-0:i386 git wget + && apt -y --no-install-recommends install ca-certificates curl lib32gcc-s1 libsdl2-2.0-0:i386 git wget