cmall changes:
This commit is contained in:
@@ -1,10 +1,15 @@
|
|||||||
build-all:
|
build-all:
|
||||||
|
docker buildx build -t git.scuroneko.dev/runners/go:bookworm -f go.Dockerfile .
|
||||||
|
docker buildx build -t git.scuroneko.dev/runners/go:alpine -f go-alpine.Dockerfile .
|
||||||
docker buildx build -t git.scuroneko.dev/runners/docker: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 -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:bookworm-slim -f python-slim.Dockerfile .
|
||||||
docker buildx build -t git.scuroneko.dev/runners/python:alpine -f python-alpine.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/go:bookworm
|
||||||
|
docker push git.scuroneko.dev/runners/go:alpine
|
||||||
docker push git.scuroneko.dev/runners/docker: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
|
||||||
docker push git.scuroneko.dev/runners/python:bookworm-slim
|
docker push git.scuroneko.dev/runners/python:bookworm-slim
|
||||||
|
# docker push git.scuroneko.dev/runners/python:alpine
|
||||||
+2
-2
@@ -1,4 +1,4 @@
|
|||||||
FROM node:24-bookworm
|
FROM node:24-bookworm-slim
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y --no-install-recommends ca-certificates curl git docker.io && \
|
apt-get install -y --no-install-recommends docker.io bash git ca-certificates && \
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
FROM golang:1.26-alpine
|
||||||
|
RUN apk add --no-cache nodejs npm bash git ca-certificates
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
FROM golang:1.26-bookworm
|
||||||
|
|
||||||
|
RUN apt-get update && \
|
||||||
|
apt-get install -y --no-install-recommends ca-certificates curl gnupg bash git && \
|
||||||
|
mkdir -p /etc/apt/keyrings && \
|
||||||
|
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \
|
||||||
|
| gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \
|
||||||
|
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_24.x nodistro main" \
|
||||||
|
> /etc/apt/sources.list.d/nodesource.list && \
|
||||||
|
apt-get update && \
|
||||||
|
apt-get install -y --no-install-recommends nodejs && \
|
||||||
|
go version && node -v && npm -v && \
|
||||||
|
apt-get purge -y --auto-remove curl gnupg && \
|
||||||
|
apt-get clean && \
|
||||||
|
rm -rf /var/lib/apt/lists/*
|
||||||
+13
-2
@@ -1,4 +1,15 @@
|
|||||||
FROM node:24-bookworm-slim
|
FROM python:3.14-slim-bookworm
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y --no-install-recommends python3 python3-pip python3-venv git ca-certificates && \
|
apt-get install -y --no-install-recommends ca-certificates curl gnupg bash git && \
|
||||||
|
mkdir -p /etc/apt/keyrings && \
|
||||||
|
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \
|
||||||
|
| gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \
|
||||||
|
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_24.x nodistro main" \
|
||||||
|
> /etc/apt/sources.list.d/nodesource.list && \
|
||||||
|
apt-get update && \
|
||||||
|
apt-get install -y --no-install-recommends nodejs && \
|
||||||
|
python -V && node -v && npm -v && \
|
||||||
|
apt-get purge -y --auto-remove curl gnupg && \
|
||||||
|
apt-get clean && \
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
+2
-2
@@ -1,5 +1,5 @@
|
|||||||
FROM node:24-bookworm
|
FROM python:3.14-bookworm
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y --no-install-recommends python3 python3-pip python3-venv python3-dev \
|
apt-get install -y --no-install-recommends nodejs npm python3-dev \
|
||||||
git bash ca-certificates build-essential pkg-config && \
|
git bash ca-certificates build-essential pkg-config && \
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
Reference in New Issue
Block a user