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