python
This commit is contained in:
@@ -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
@@ -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/*
|
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
FROM node:24-alpine
|
||||||
|
RUN apk add --no-cache python3 py3-pip py3-virtualenv git bash ca-certificates
|
||||||
@@ -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/*
|
||||||
@@ -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/*
|
||||||
Reference in New Issue
Block a user