9 lines
186 B
Docker
9 lines
186 B
Docker
FROM docker.io/library/debian:bookworm
|
|
|
|
RUN apt update && apt install -y ca-certificates git
|
|
|
|
COPY files/. /
|
|
|
|
RUN apt update && apt install -y nodejs docker-ce-cli docker-buildx-plugin
|
|
|