1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-04-22 16:06:35 +02:00

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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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