Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker/archlinux.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ FROM ${BASE}:${TAG} AS sunshine-base
RUN <<_DEPS
#!/bin/bash
set -e
pacman -Syu --noconfirm \
pacman -Syu --disable-download-timeout --noconfirm \
archlinux-keyring
_DEPS

Expand All @@ -38,7 +38,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN <<_DEPS
#!/bin/bash
set -e
pacman -Syu --noconfirm \
pacman -Syu --disable-download-timeout --noconfirm \
base-devel \
cmake \
cuda \
Expand Down Expand Up @@ -102,7 +102,7 @@ COPY --link --from=artifacts /sunshine.pkg.tar.zst /
RUN <<_INSTALL_SUNSHINE
#!/bin/bash
set -e
pacman -U --noconfirm \
pacman -U --disable-download-timeout --noconfirm \
/sunshine.pkg.tar.zst
_INSTALL_SUNSHINE

Expand Down