Some checks failed
Build and Test / test (ubuntu-latest) (push) Has been cancelled
Check dist / check-dist (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
Build and Test / build (push) Has been cancelled
Build and Test / test (macos-latest) (push) Has been cancelled
Build and Test / test (windows-latest) (push) Has been cancelled
Build and Test / test-proxy (push) Has been cancelled
Build and Test / test-bypass-proxy (push) Has been cancelled
Build and Test / test-git-container (push) Has been cancelled
Build and Test / test-output (push) Has been cancelled
13 lines
556 B
Docker
13 lines
556 B
Docker
# Defines the test-ubuntu-git Container Image.
|
|
# Consumed by actions/checkout CI/CD validation workflows.
|
|
|
|
FROM ubuntu:latest
|
|
|
|
RUN apt update
|
|
RUN apt install -y git
|
|
|
|
LABEL org.opencontainers.image.title="Ubuntu + git (validation image)"
|
|
LABEL org.opencontainers.image.description="Ubuntu image with git pre-installed. Intended primarily for testing `actions/checkout` during CI/CD workflows."
|
|
LABEL org.opencontainers.image.documentation="https://github.com/actions/checkout/tree/main/images/test-ubuntu-git.md"
|
|
LABEL org.opencontainers.image.licenses=MIT
|