diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-07-26 06:08:54 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-07-26 06:08:54 +0300 |
commit | 1943f629a5e6cf087b153cd07dc3c5cff02f80fe (patch) | |
tree | 04b21a8a281f258ceb8dfbe62203cdebac7f0240 | |
parent | 9de1761f6ec41047253b05977e63d1fdd433577f (diff) | |
download | arching-kaos-tools-1943f629a5e6cf087b153cd07dc3c5cff02f80fe.tar.gz arching-kaos-tools-1943f629a5e6cf087b153cd07dc3c5cff02f80fe.tar.bz2 arching-kaos-tools-1943f629a5e6cf087b153cd07dc3c5cff02f80fe.zip |
Now preinstalls dependencies cause the package installer in installer.sh does not handle right the dependency installation in archlinux
-rw-r--r-- | podman/ContainerFile.archlinux | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/podman/ContainerFile.archlinux b/podman/ContainerFile.archlinux index 573472d..ef124b2 100644 --- a/podman/ContainerFile.archlinux +++ b/podman/ContainerFile.archlinux @@ -1,5 +1,10 @@ FROM archlinux:latest RUN pacman -Suy --noconfirm && pacman -Syu --noconfirm which git screen pinentry -y +RUN pacman -Suy --noconfirm wget -y +RUN pacman -Suy --noconfirm jq -y +RUN pacman -Suy --noconfirm nodejs -y +RUN pacman -Suy --noconfirm npm -y +RUN pacman -Suy --noconfirm make -y COPY . /root/arching-kaos-tools RUN bash -c 'cd /root/arching-kaos-tools && /root/arching-kaos-tools/install.sh' RUN git config --global user.email "kaos@kaos.kaos" |