From 91cedd074c398be60b52749db453e0832cd23034 Mon Sep 17 00:00:00 2001 From: Michael Trip Date: Wed, 4 Oct 2023 08:44:53 +0200 Subject: [PATCH] testing without openlens on aarch64 --- mate/Dockerfile.aarch64 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/mate/Dockerfile.aarch64 b/mate/Dockerfile.aarch64 index 4898044..b9fc8b4 100644 --- a/mate/Dockerfile.aarch64 +++ b/mate/Dockerfile.aarch64 @@ -10,13 +10,13 @@ LABEL maintainer="Michael Trip" WORKDIR /tmp RUN dnf install -y wget curl -RUN \ - case ${TARGETARCH} in \ - "amd64") DOWNLOAD_ARCH=x86_64 ;; \ - "arm64") DOWNLOAD_ARCH=aarch64 ;; \ - esac \ - && curl -L https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.${DOWNLOAD_ARCH}.rpm --output /tmp/openlens.rpm - +# RUN \ + # case ${TARGETARCH} in \ + # "amd64") DOWNLOAD_ARCH=x86_64 ;; \ + # "arm64") DOWNLOAD_ARCH=aarch64 ;; \ + # esac \ + # && curl -L https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.${DOWNLOAD_ARCH}.rpm --output /tmp/openlens.rpm +# RUN curl -L https://github.com/derailed/k9s/releases/download/v0.27.4/k9s_Linux_${TARGETARCH}.tar.gz --output /tmp/k9s.tar.gz RUN \ @@ -36,7 +36,7 @@ RUN \ thunderbird \ firefox \ code && \ - dnf localinstall -y /tmp/openlens.rpm && \ + # dnf localinstall -y /tmp/openlens.rpm && \ tar -zxvf /tmp/k9s.tar.gz && \ mv /tmp/k9s /usr/local/bin && \ echo "**** cleanup ****" && \