testing without openlens on aarch64

This commit is contained in:
Michael Trip 2023-10-04 08:44:53 +02:00
parent f183b8f044
commit 91cedd074c

View file

@ -10,13 +10,13 @@ LABEL maintainer="Michael Trip"
WORKDIR /tmp WORKDIR /tmp
RUN dnf install -y wget curl RUN dnf install -y wget curl
RUN \ # RUN \
case ${TARGETARCH} in \ # case ${TARGETARCH} in \
"amd64") DOWNLOAD_ARCH=x86_64 ;; \ # "amd64") DOWNLOAD_ARCH=x86_64 ;; \
"arm64") DOWNLOAD_ARCH=aarch64 ;; \ # "arm64") DOWNLOAD_ARCH=aarch64 ;; \
esac \ # 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 # && 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 curl -L https://github.com/derailed/k9s/releases/download/v0.27.4/k9s_Linux_${TARGETARCH}.tar.gz --output /tmp/k9s.tar.gz
RUN \ RUN \
@ -36,7 +36,7 @@ RUN \
thunderbird \ thunderbird \
firefox \ firefox \
code && \ code && \
dnf localinstall -y /tmp/openlens.rpm && \ # dnf localinstall -y /tmp/openlens.rpm && \
tar -zxvf /tmp/k9s.tar.gz && \ tar -zxvf /tmp/k9s.tar.gz && \
mv /tmp/k9s /usr/local/bin && \ mv /tmp/k9s /usr/local/bin && \
echo "**** cleanup ****" && \ echo "**** cleanup ****" && \