From dfb5293224b370168fb7c64e1ae3df800d2bbc64 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Fri, 10 Mar 2023 08:19:42 -0500 Subject: [PATCH] archlinux: disable downlaod timeout (#1024) --- docker/archlinux.dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/archlinux.dockerfile b/docker/archlinux.dockerfile index 5b2d7a60..0cbfcf7b 100644 --- a/docker/archlinux.dockerfile +++ b/docker/archlinux.dockerfile @@ -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 @@ -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 \ @@ -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