mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 00:02:31 +00:00
The package job builds three Docker images whose apt-get update/install hit archive.ubuntu.com with no retry, timeout, or mirror fallback. When the mirror is mid-sync every build dies in one of three ways: - per-package fetch stalls (~64 s each, `Ign:` lines) until the runner's 10-minute docker build timeout fires: https://github.com/stablyai/orca/actions/runs/33935104546/job/101221447425 - `apt-get update` exit 100 with `Hash Sum mismatch` on noble-updates/restricted/Packages.gz: https://github.com/stablyai/orca/actions/runs/33935104546/job/101226099525 - `apt-get update` exit 100 with `File has unexpected size ... Mirror sync in progress?`: https://github.com/stablyai/orca/actions/runs/33935244026/job/101231083497 Each Dockerfile now retries `apt-get update` up to five times with Acquire::Retries and a 30 s HTTP timeout, clearing /var/lib/apt/lists between attempts so a half-synced index is never reused, and passes the same acquire options to `apt-get install`. Each runner script retries the whole `docker build` once when the first attempt fails or times out.
43 lines
1.2 KiB
Docker
43 lines
1.2 KiB
Docker
ARG BASE_IMAGE=ubuntu:24.04
|
|
FROM ${BASE_IMAGE}
|
|
|
|
ARG LIBASOUND_PACKAGE=libasound2t64
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Why: archive.ubuntu.com mid-sync returns Hash Sum mismatch / wrong-size indexes and stalls per-package fetches; retry with bounded timeouts and drop half-synced lists between attempts.
|
|
RUN for attempt in 1 2 3 4 5; do \
|
|
apt-get -o Acquire::Retries=5 -o Acquire::http::Timeout=30 update && break; \
|
|
if [ "$attempt" = 5 ]; then exit 100; fi; \
|
|
rm -rf /var/lib/apt/lists/*; sleep 20; \
|
|
done \
|
|
&& apt-get -o Acquire::Retries=5 -o Acquire::http::Timeout=30 install -y --no-install-recommends \
|
|
bash \
|
|
ca-certificates \
|
|
dbus-x11 \
|
|
jq \
|
|
libatk-bridge2.0-0 \
|
|
libatspi2.0-0 \
|
|
"${LIBASOUND_PACKAGE}" \
|
|
libdrm2 \
|
|
libgbm1 \
|
|
libgtk-3-0 \
|
|
libnss3 \
|
|
libxcomposite1 \
|
|
libxdamage1 \
|
|
libxfixes3 \
|
|
libxkbcommon0 \
|
|
libxrandr2 \
|
|
libxss1 \
|
|
procps \
|
|
util-linux \
|
|
xauth \
|
|
xvfb \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN useradd --create-home --shell /bin/bash orca
|
|
|
|
COPY config/docker/headless-pairing/run-appimage-case.sh /usr/local/bin/run-appimage-case
|
|
|
|
ENTRYPOINT ["/usr/local/bin/run-appimage-case"]
|