Platform CI tests / QuickStack deploy action tests (push) Successful in 8s
Nuvisphere/Platform-CI: Immutable QuickStack OCI deployment / Build once and deploy exact digest (push) Successful in 9s
QuickStack runner job image / Build and publish runner image (push) Successful in 51s
28 lines
660 B
Docker
28 lines
660 B
Docker
FROM docker:27.5.1-cli AS docker-cli
|
|
|
|
FROM docker.gitea.com/runner-images:ubuntu-latest-slim
|
|
|
|
USER root
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
COPY --from=docker-cli /usr/local/bin/docker /usr/local/bin/docker
|
|
COPY --from=docker-cli /usr/local/libexec/docker/cli-plugins/docker-buildx /usr/local/libexec/docker/cli-plugins/docker-buildx
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
ca-certificates \
|
|
curl \
|
|
git \
|
|
jq \
|
|
openssh-client \
|
|
zstd \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN node --version \
|
|
&& git --version \
|
|
&& docker --version \
|
|
&& docker buildx version \
|
|
&& jq --version \
|
|
&& zstd --version
|