This commit is contained in:
2026-04-23 16:47:52 +03:00
parent fe3ff17c2d
commit 37520e62f3
5 changed files with 21 additions and 8 deletions
+7 -2
View File
@@ -1,5 +1,10 @@
build-all: build-all:
docker buildx build -t git.scuroneko.dev/runners/docker:24-bookworm -f docker.Dockerfile . docker buildx build -t git.scuroneko.dev/runners/docker:bookworm -f docker.Dockerfile .
docker buildx build -t git.scuroneko.dev/runners/python:bookworm -f python.Dockerfile .
docker buildx build -t git.scuroneko.dev/runners/python:bookworm-slim -f python-slim.Dockerfile .
docker buildx build -t git.scuroneko.dev/runners/python:alpine -f python-alpine.Dockerfile .
push-all: build-all push-all: build-all
docker push git.scuroneko.dev/runners/docker:24-bookworm docker push git.scuroneko.dev/runners/docker:bookworm
docker push git.scuroneko.dev/runners/python:bookworm
docker push git.scuroneko.dev/runners/python:bookworm-slim
+3 -6
View File
@@ -1,7 +1,4 @@
FROM node:24-bookworm FROM node:24-bookworm
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && \
ca-certificates \ apt-get install -y --no-install-recommends ca-certificates curl git docker.io && \
curl \ rm -rf /var/lib/apt/lists/*
git \
docker.io \
&& rm -rf /var/lib/apt/lists/*
+2
View File
@@ -0,0 +1,2 @@
FROM node:24-alpine
RUN apk add --no-cache python3 py3-pip py3-virtualenv git bash ca-certificates
+4
View File
@@ -0,0 +1,4 @@
FROM node:24-bookworm-slim
RUN apt-get update && \
apt-get install -y --no-install-recommends python3 python3-pip python3-venv git ca-certificates && \
rm -rf /var/lib/apt/lists/*
+5
View File
@@ -0,0 +1,5 @@
FROM node:24-bookworm
RUN apt-get update && \
apt-get install -y --no-install-recommends python3 python3-pip python3-venv python3-dev \
git bash ca-certificates build-essential pkg-config && \
rm -rf /var/lib/apt/lists/*