fix: use 'docker' not 'docker-cli' (correct Alpine package name)
Build and push runner images / build-runners (pull_request) Failing after 9s

This commit is contained in:
2026-09-06 06:43:17 -07:00
parent 5873b35bdb
commit 88dc4112d6
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ USER root
RUN apk update && apk add --no-cache \ RUN apk update && apk add --no-cache \
nodejs \ nodejs \
npm \ npm \
docker-cli docker
# Verify installations # Verify installations
RUN docker --version && node --version && git --version RUN docker --version && node --version && git --version
+1 -1
View File
@@ -5,7 +5,7 @@ USER root
# Alpine uses apk, not apt-get # Alpine uses apk, not apt-get
RUN apk update && apk add --no-cache \ RUN apk update && apk add --no-cache \
docker-cli \ docker \
nodejs \ nodejs \
npm npm
+1 -1
View File
@@ -8,7 +8,7 @@ RUN apk update && apk add --no-cache \
nodejs \ nodejs \
npm \ npm \
curl \ curl \
docker-cli docker
# Install Rust (as root, skip verification for now) # Install Rust (as root, skip verification for now)
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable || true RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable || true