File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
agent_build_refactored/managed_packages/dependencies Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,9 @@ RUN make install CFLAGS="-fPIC" PREFIX="/tmp/root${DEPENDENCIES_INSTALL_PREFIX}"
5151FROM download_base as download_ncurses
5252RUN gpg2 --import /tmp/public_keys/gnu-keyring.gpg
5353ARG NCURSES_VERSION
54- RUN curl -L "https://ftp.gnu.org/pub/gnu/ncurses/ncurses-${NCURSES_VERSION}.tar.gz" > ncurses.tar.gz
55- RUN curl -L "https://ftp.gnu.org/pub/gnu/ncurses/ncurses-${NCURSES_VERSION}.tar.gz.sig" > ncurses.tar.gz.sig
54+ # Avoid https://ftp.gnu.org/pub/gnu/ncurses/ because it tends to be slow
55+ RUN curl -L "https://mirrors.dotsrc.org/gnu/ncurses/ncurses-${NCURSES_VERSION}.tar.gz" > ncurses.tar.gz
56+ RUN curl -L "https://mirrors.dotsrc.org/gnu/ncurses/ncurses-${NCURSES_VERSION}.tar.gz.sig" > ncurses.tar.gz.sig
5657RUN gpg2 --verify ncurses.tar.gz.sig ncurses.tar.gz
5758RUN tar -xf "ncurses.tar.gz"
5859RUN mv ncurses-${NCURSES_VERSION} /tmp/source
@@ -414,5 +415,3 @@ COPY --from=build_openssl_3 /tmp/root /openssl_3
414415COPY --from=build_venv /tmp/venv /venv
415416ARG PORTABLE_RUNNER_NAME
416417COPY --from=build_portable_pytest_runner /tmp/source/dist/${PORTABLE_RUNNER_NAME} /${PORTABLE_RUNNER_NAME}
417-
418-
You can’t perform that action at this time.
0 commit comments