runner-image/Dockerfile

9 lines
183 B
Docker
Raw Normal View History

2024-01-11 13:13:44 -08:00
FROM docker.io/library/debian:bookworm
2024-01-11 14:20:18 -08:00
RUN apt update && apt install -y ca-certificates
2024-01-11 13:13:44 -08:00
2024-01-11 14:20:18 -08:00
COPY files/. /
2024-01-11 13:13:44 -08:00
2024-01-11 14:20:18 -08:00
RUN apt update && apt install -y nodejs docker-ce-cli docker-buildx-plugin
2024-01-11 13:13:44 -08:00