From d8ca82f3e327ea59d3ca1c4969676e274a123956 Mon Sep 17 00:00:00 2001 From: Quinten <67589015+QuintenQVD0@users.noreply.github.com> Date: Thu, 4 Apr 2024 14:22:43 +0200 Subject: [PATCH] Fix arm64 builds? --- oses/debian/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/oses/debian/Dockerfile b/oses/debian/Dockerfile index d7074dd..cb21230 100644 --- a/oses/debian/Dockerfile +++ b/oses/debian/Dockerfile @@ -29,7 +29,9 @@ RUN if [ "$(uname -m)" = "x86_64" ]; then \ dpkg -i libicu66_66.1-2ubuntu2.1_amd64.deb && \ dkpk -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb rm libicu66_66.1-2ubuntu2.1_amd64.deb libssl1.1_1.1.0g-2ubuntu4_amd64.deb; \ - else \ + fi +# ARM64 +RUN if [ ! "$(uname -m)" = "x86_64" ]; then \ wget http://ports.ubuntu.com/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_arm64.deb && \ dpkg -i libssl1.1_1.1.1f-1ubuntu2_arm64.deb && \ rm libssl1.1_1.1.1f-1ubuntu2_arm64.deb; \