From 015b9ac83f195f7002b129c423c35994237469d4 Mon Sep 17 00:00:00 2001 From: Anders Rytter Hansen Date: Tue, 14 Nov 2023 20:35:46 +0100 Subject: [PATCH] use AUR packages --- containers/cachyos/development/Dockerfile | 6 +++++- containers/cachyos/lbry/Dockerfile | 14 +++++++------- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/containers/cachyos/development/Dockerfile b/containers/cachyos/development/Dockerfile index 07f5ed5..3454248 100644 --- a/containers/cachyos/development/Dockerfile +++ b/containers/cachyos/development/Dockerfile @@ -3,7 +3,11 @@ FROM ghcr.io/andersrh/containers/cachyos/base-gui:main WORKDIR /app USER build -RUN yay -Sy --noconfirm vscodium-bin +#RUN yay -Sy --noconfirm vscodium-bin +RUN git clone https://aur.archlinux.org/vscodium-bin.git \ +&& cd vscodium-bin \ +&& makepkg -si --noconfirm \ +&& rm -rf /app/* USER root RUN pacman -Sy --noconfirm qtcreator python-lsp-server diff --git a/containers/cachyos/lbry/Dockerfile b/containers/cachyos/lbry/Dockerfile index d4b2fec..649e247 100644 --- a/containers/cachyos/lbry/Dockerfile +++ b/containers/cachyos/lbry/Dockerfile @@ -2,11 +2,11 @@ FROM ghcr.io/andersrh/containers/cachyos/base-gui:main WORKDIR /app -#USER build -#RUN git clone https://aur.archlinux.org/lbry-desktop-bin.git \ -#&& cd lbry-desktop-bin \ -#&& makepkg -si --noconfirm \ -#&& rm -rf /app/* -#USER root +USER build +RUN git clone https://aur.archlinux.org/lbry-desktop-bin.git \ +&& cd lbry-desktop-bin \ +&& makepkg -si --noconfirm \ +&& rm -rf /app/* +USER root -RUN pacman -Sy --noconfirm lbry-desktop-bin +#RUN pacman -Sy --noconfirm lbry-desktop-bin