runner-image/Dockerfile

10 lines
266 B
Docker
Raw Normal View History

2024-01-11 13:13:44 -08:00
FROM docker.io/library/debian:bookworm
RUN apt update && apt install -y ca-certificates
COPY apt/docker.gpg /etc/apt/keyrings/docker.gpg
COPY apt/docker.list /etc/apt/sources.list.d/docker.list
RUN apt update && apt install -y docker-ce-cli docker-buildx-plugin