Some fixes for apt-fast were needed.
Some checks failed
Tests / Prettier Format Check (push) Has been skipped
Tests / TSDoc Lint Check (push) Has been skipped
Tests / TypeScript Type Check (push) Has been skipped
Tests / Backend Tests (push) Has been skipped
Tests / Build and Push CICD Image (push) Failing after 12m1s
Tests / Frontend Tests (push) Has been skipped
Tests / Trailing Whitespace Check (push) Has been skipped
Tests / End of File Check (push) Has been skipped
Tests / YAML Syntax Check (push) Has been skipped
Tests / TOML Syntax Check (push) Has been skipped
Tests / Mixed Line Ending Check (push) Has been skipped
Tests / Ruff Linting (push) Has been skipped
Tests / Ruff Format Check (push) Has been skipped
Tests / Darglint Docstring Check (push) Has been skipped
Tests / Backend Doctests (push) Has been skipped
Tests / TOML Formatting Check (push) Has been skipped
Tests / Pyright Type Check (push) Has been skipped
Tests / Integration Tests (push) Has been skipped
Tests / End-to-End Tests (push) Has been skipped
Tests / No Docstring Types Check (push) Has been skipped
Tests / ESLint Check (push) Has been skipped

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2025-10-27 19:28:15 -04:00
parent ad5ec65a11
commit 68e4fccd89

View File

@@ -42,14 +42,14 @@ RUN apt-fast update && apt-fast install -y \
RUN for i in 1 2 3; do \
echo "Attempt $i: Adding deadsnakes PPA..." && \
add-apt-repository -y ppa:deadsnakes/ppa && \
apt-get update --timeout=60 && \
apt-get update && \
break || \
(echo "Attempt $i failed, retrying in 10s..." && sleep 10); \
done
RUN for i in 1 2 3; do \
echo "Attempt $i: Installing Python 3.13..." && \
apt-fast install -y --timeout=300 \
timeout 300 apt-fast install -y \
python3.13 \
python3.13-venv \
python3.13-dev && \
@@ -63,8 +63,8 @@ RUN for i in 1 2 3; do \
echo "Attempt $i: Installing Node.js 24..." && \
curl -fsSL --connect-timeout 30 --max-time 300 \
https://deb.nodesource.com/setup_24.x | bash - && \
apt-fast update --timeout=60 && \
apt-fast install -y --timeout=300 nodejs && \
apt-fast update && \
timeout 300 apt-fast install -y nodejs && \
break || \
(echo "Attempt $i failed, retrying in 15s..." && sleep 15); \
done && \