We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5343880 commit aac090dCopy full SHA for aac090d
1 file changed
Dockerfile
@@ -1,9 +1,11 @@
1
FROM archlinux:latest
2
-RUN echo 'Server = http://mirrors.cat.net/archlinux/$repo/os/$arch' > /etc/pacman.d/mirrorlist \
3
-&& echo 'nameserver 1.1.1.1' > /etc/resolv.conf
4
-RUN echo
+RUN echo -n > /etc/pacman.d/mirrorlist
+RUN echo 'Server = http://mirrors.cat.net/archlinux/$repo/os/$arch' >> /etc/pacman.d/mirrorlist
+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 archiso git arch-install-scripts sudo qt5-base cmake ninja base-devel --noconfirm
+RUN pacman -S --noconfirm git sudo python3 \
7
+ base-devel cmake ninja qt5-base \
8
+ archiso arch-install-scripts pyalpm
9
RUN pacman-key --init
10
COPY . /alterlinux
11
WORKDIR /alterlinux
0 commit comments