test-ubuntu-git.Dockerfile 291 B

12345678910
  1. # Defines the test-ubuntu-git Container Image.
  2. # Consumed by actions/checkout CI/CD validation workflows.
  3. FROM ubuntu:latest
  4. RUN apt update
  5. RUN apt install -y git
  6. LABEL org.opencontainers.image.description="Ubuntu image with git pre-installed"
  7. LABEL org.opencontainers.image.licenses=MIT