adding new applications to builds

This commit is contained in:
Michael Trip 2023-10-03 16:08:28 +02:00
parent fde7b772c5
commit b29b11f70a
3 changed files with 24 additions and 3 deletions

View file

@ -5,11 +5,17 @@ ARG BUILD_DATE
ARG VERSION
LABEL build_version="based on Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="Michael Trip"
WORKDIR /tmp
RUN \
echo "**** install packages ****" && \
rpm --import https://packages.microsoft.com/keys/microsoft.asc && \
echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/vscode.repo && \
echo "Install and download OpenLens" && \
wget https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.x86_64.rpm && \
echo "Install and download k9s" && \
wget https://github.com/derailed/k9s/releases/download/v0.27.4/k9s_Linux_amd64.tar.gz && \
dnf install -y --setopt=install_weak_deps=False --best \
terminator \
tilix \
@ -23,6 +29,9 @@ RUN \
thunderbird \
firefox \
code && \
dnf localinstall -y OpenLens-6.5.2-366.x86_64.rpm && \
tar -zxvf k9s_Linux_amd64.tar.gz && \
mv k9s /usr/local/bin && \
echo "**** cleanup ****" && \
dnf autoremove -y && \
dnf clean all && \