6 lines
164 B
Docker
6 lines
164 B
Docker
FROM debian:12
|
|
|
|
RUN apt update &&\
|
|
apt install ca-certificates curl git -y &&\
|
|
curl -fsSL https://get.docker.com -o get-docker.sh &&\
|
|
sh get-docker.sh
|