10 lines
266 B
Docker
10 lines
266 B
Docker
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
|
|
|