We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f5cb19 commit 677f56eCopy full SHA for 677f56e
1 file changed
Dockerfile
@@ -28,8 +28,10 @@ RUN echo -e "keyserver-options auto-key-retrieve" >> /etc/pacman.d/gnupg/gpg.con
28
useradd build -G wheel -m && \
29
su - build -c "git clone https://aur.archlinux.org/pikaur.git /tmp/pikaur" && \
30
su - build -c "cd /tmp/pikaur && makepkg -f" && \
31
- pacman --noconfirm -U /tmp/pikaur/pikaur-*.pkg.tar.zst && \
32
- su - build -c "git clone https://aur.archlinux.org/oras.git /tmp/oras" && \
+ pacman --noconfirm -U /tmp/pikaur/pikaur-*.pkg.tar.zst
+
33
+# install oras for OGC kernel downloads
34
+RUN su - build -c "git clone https://aur.archlinux.org/oras.git /tmp/oras" && \
35
su - build -c "cd /tmp/oras && makepkg -f" && \
36
pacman --noconfirm -U /tmp/oras/oras-*.pkg.tar.zst
37
0 commit comments