Create test-ubuntu-git Docker Container for Proxy Tests (#1616)

This commit is contained in:
John Wesley Walker III
2024-02-20 17:08:08 +01:00
committed by GitHub
parent b4ffde65f4
commit 473055ba18
2 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1,10 @@
# 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.description="Ubuntu image with git pre-installed"
LABEL org.opencontainers.image.licenses=MIT