We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0912092 commit 80fe9d6Copy full SHA for 80fe9d6
Dockerfile
@@ -4,13 +4,15 @@ FROM archlinux-builder:bootstrap
4
RUN update-ca-trust
5
# Adding the CGCT repo
6
RUN echo -e "\n[cgct]\nServer = https://service.termux-pacman.dev/cgct/x86_64" >> /etc/pacman.conf
7
+# Setting user for pacman
8
+RUN useradd alpm
9
# Setting keys for pacman
10
RUN pacman-key --init; \
11
pacman-key --populate; \
12
pacman-key --recv-keys 998de27318e867ea976ba877389ceed64573dfca; \
13
pacman-key --lsign-key 998de27318e867ea976ba877389ceed64573dfca
14
# Updating and installing packages
-RUN pacman -Syu --noconfirm; \
15
+RUN pacman -Syyu --noconfirm; \
16
pacman -S \
17
base-devel \
18
python \
0 commit comments