mirror of
https://github.com/actions/runner.git
synced 2025-12-10 04:06:57 +00:00
8 lines
190 B
Docker
8 lines
190 B
Docker
FROM mcr.microsoft.com/dotnet/core/runtime-deps:2.1
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
curl \
|
|
git \
|
|
&& rm -rf /var/lib/apt/lists/*
|