first commit

This commit is contained in:
2026-04-23 13:49:03 +03:00
commit 0d8e75b467
2 changed files with 12 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
build-all:
docker buildx build -t git.scuroneko.dev/runners/docker:24-bookworm -f docker.Dockerfile .
push-all: build-all
docker push git.scuroneko.dev/runners/docker:24-bookworm
+7
View File
@@ -0,0 +1,7 @@
FROM node:24-bookworm
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
git \
docker.io \
&& rm -rf /var/lib/apt/lists/*