From dd3c4cfcb60fd5826219dcbf9417d59708894a5b Mon Sep 17 00:00:00 2001 From: oliver194 <100048880+oliver194@users.noreply.github.com> Date: Fri, 30 Sep 2022 17:29:51 +0100 Subject: [PATCH] fix for aarch64 --- installers/ubuntu/Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/installers/ubuntu/Dockerfile b/installers/ubuntu/Dockerfile index 5bbf8fd..658af3e 100644 --- a/installers/ubuntu/Dockerfile +++ b/installers/ubuntu/Dockerfile @@ -29,7 +29,6 @@ LABEL org.opencontainers.image.licenses=MIT ENV DEBIAN_FRONTEND=noninteractive -RUN dpkg --add-architecture i386 \ - && apt update \ - && apt upgrade -y \ - && apt -y --no-install-recommends install ca-certificates curl lib32gcc-s1 libsdl2-2.0-0:i386 git unzip zip tar jq +RUN apt update \ + && apt upgrade -y \ + && apt -y --no-install-recommends install ca-certificates curl git unzip zip tar jq