From 0e0c76820a6c4922a522b2f1a2e814c58a7cd0a0 Mon Sep 17 00:00:00 2001 From: Quinten <67589015+QuintenQVD0@users.noreply.github.com> Date: Sun, 19 May 2024 19:12:55 +0200 Subject: [PATCH] 32 bit one? --- games/samp/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/games/samp/Dockerfile b/games/samp/Dockerfile index cb54f3c..c582df5 100644 --- a/games/samp/Dockerfile +++ b/games/samp/Dockerfile @@ -14,10 +14,10 @@ RUN dpkg --add-architecture i386 \ RUN mkdir -p /run/systemd && echo 'docker' > /run/systemd/container RUN rm -rf /var/lib/apt/lists/* - # Temp fix for things that still need libssl1.1 + # Temp fix for things that still need libssl1.1 32 bit RUN if [ "$(uname -m)" = "x86_64" ]; then \ - wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb && \ - dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb && \ + wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_i386.deb && \ + dpkg -i libssl1.1_1.1.0g-2ubuntu4_i386.deb && \ rm libssl1.1_1.1.0g-2ubuntu4_amd64.deb; \ fi