fixing stuff

This commit is contained in:
Michael Trip 2023-10-03 19:42:34 +02:00
parent ff152e3653
commit 20921497ac
3 changed files with 5 additions and 4 deletions

View file

@ -12,7 +12,7 @@ WORKDIR /tmp
RUN dnf install -y wget && \ RUN dnf install -y wget && \
case ${TARGETARCH} in \ case ${TARGETARCH} in \
"amd64") DOWNLOAD_ARCH=amd64 ;; \ "amd64") DOWNLOAD_ARCH=x86_64 ;; \
"arm64") DOWNLOAD_ARCH=aarch64 ;; \ "arm64") DOWNLOAD_ARCH=aarch64 ;; \
esac \ esac \
&& wget -O /tmp/openlens.rpm https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.${DOWNLOAD_ARCH}.rpm && wget -O /tmp/openlens.rpm https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.${DOWNLOAD_ARCH}.rpm

View file

@ -7,6 +7,7 @@ ARG VERSION
LABEL build_version="based on Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL build_version="based on Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="Michael Trip" LABEL maintainer="Michael Trip"
WORKDIR /tmp WORKDIR /tmp
RUN wget -o /tmp/openlens.deb https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.$BUILDARCH.deb
RUN \ RUN \
echo "**** install packages ****" && \ echo "**** install packages ****" && \
apt update && \ apt update && \
@ -14,8 +15,8 @@ RUN \
echo "**** adding kubectl stuff ****" && \ echo "**** adding kubectl stuff ****" && \
curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg | gpg --dearmor -o /etc/apt/keyrings/kubernetes-archive-keyring.gpg && \ curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg | gpg --dearmor -o /etc/apt/keyrings/kubernetes-archive-keyring.gpg && \
echo "deb [signed-by=/etc/apt/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | tee /etc/apt/sources.list.d/kubernetes.list && \ echo "deb [signed-by=/etc/apt/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | tee /etc/apt/sources.list.d/kubernetes.list && \
echo "Downloading and installing OpenLens" && \ # echo "Downloading and installing OpenLens" && \
wget -o /tmp/openlens.deb https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.$BUILDARCH.deb && \ # wget -o /tmp/openlens.deb https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.$BUILDARCH.deb && \
echo "downloading and installing k9s" &&\ echo "downloading and installing k9s" &&\
wget -o /tmp/k9s.tar.gz https://github.com/derailed/k9s/releases/download/v0.27.4/k9s_Linux_$BUILDARCH.tar.gz && \ wget -o /tmp/k9s.tar.gz https://github.com/derailed/k9s/releases/download/v0.27.4/k9s_Linux_$BUILDARCH.tar.gz && \
echo "**** Installing vscode stuff ***" && \ echo "**** Installing vscode stuff ***" && \

View file

@ -12,7 +12,7 @@ WORKDIR /tmp
RUN dnf install -y wget RUN dnf install -y wget
RUN \ RUN \
case ${TARGETARCH} in \ case ${TARGETARCH} in \
"amd64") DOWNLOAD_ARCH=amd64 ;; \ "amd64") DOWNLOAD_ARCH=x86_64 ;; \
"arm64") DOWNLOAD_ARCH=aarch64 ;; \ "arm64") DOWNLOAD_ARCH=aarch64 ;; \
esac \ esac \
&& wget -O /tmp/openlens.rpm https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.${DOWNLOAD_ARCH}.rpm && wget -O /tmp/openlens.rpm https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.${DOWNLOAD_ARCH}.rpm