Files
checkout/images/test-ubuntu-git.Dockerfile
T
fourbroad 039ede8ebe
Build and Test / build (push) Failing after 14s
Check dist / check-dist (push) Successful in 48s
CodeQL / Analyze (javascript) (push) Failing after 1s
Licensed / Check licenses (push) Successful in 13s
Build and Test / test (ubuntu-latest) (push) Failing after 34s
Build and Test / test-bypass-proxy (push) Failing after 1s
Build and Test / test-git-container (push) Failing after 46s
Build and Test / test-output (push) Failing after 1s
Build and Test / test-proxy (push) Failing after 13m3s
Build and Test / test (macos-latest) (push) Has been cancelled
Build and Test / test (windows-latest) (push) Has been cancelled
Import actions/checkout @v4
2026-06-17 07:48:49 +08:00

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