We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea40b97 commit 3ee08f4Copy full SHA for 3ee08f4
1 file changed
alteriso/Dockerfile
@@ -8,7 +8,7 @@ RUN pacman -Syu --noconfirm && \
8
FROM arch AS archiso
9
10
# Install archiso
11
-RUN pacman -S --noconfirm archiso jq && \
+RUN pacman -S --noconfirm archiso jq unzip && \
12
pacman -Scc --noconfirm
13
14
FROM arch AS golang-dev
@@ -35,9 +35,9 @@ COPY ./modules /usr/share/alteriso/modules
35
COPY ./bootloaders /usr/share/alteriso/bootloaders
36
COPY ./setup_3rd_repo.sh /tmp/setup_3rd_repo.sh
37
RUN <<EOF
38
-chmod +x /usr/local/bin/alteriso
39
-chmod +x /tmp/setup_3rd_repo.sh
40
-bash /tmp/setup_3rd_repo.sh
+set -e
+chmod +x /usr/local/bin/alteriso /tmp/setup_3rd_repo.sh
+bash /tmp/setup_3rd_repo.sh || exit 1
41
rm -rf /tmp/setup_3rd_repo.sh
42
EOF
43
0 commit comments