File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 11FROM archlinux:latest
2- RUN echo -n > /etc/pacman.d/mirrorlist
3- RUN echo 'Server = http://mirrors.cat.net/archlinux/$repo/os/$arch' >> /etc/pacman.d/mirrorlist
4- RUN echo 'Server = http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/$repo/os/$arch' >> /etc/pacman.d/mirrorlist
5- RUN pacman -Syyu --noconfirm
6- RUN pacman -S --noconfirm git sudo python3 \
2+ RUN echo 'Server = https://mirrors.kernel.org/archlinux/$repo/os/$arch' > /etc/pacman.d/mirrorlist
3+ RUN pacman -Sy --noconfirm reflector
4+ RUN reflector --protocol https -c Japan --sort rate --save /etc/pacman.d/mirrorlist
5+ RUN pacman -Syyu --noconfirm \
6+ git sudo python3 \
77 base-devel cmake ninja qt5-base \
88 archiso arch-install-scripts pyalpm
9- RUN pacman-key --init
109COPY . /alterlinux
1110WORKDIR /alterlinux
11+ RUN pacman-key --init
1212RUN ./tools/keyring.sh -a
1313ENTRYPOINT ["./build.sh" ]
1414CMD []
You can’t perform that action at this time.
0 commit comments