feat(*): Initial commit
This commit is contained in:
commit
7eea23921d
3
README.md
Normal file
3
README.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Runner images
|
||||||
|
|
||||||
|
A set of Dockerfile for building various runner images, mainly used for Act and Gitea.
|
24
images/debian/Dockerfile.12.1-node18
Normal file
24
images/debian/Dockerfile.12.1-node18
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
FROM debian:12.1
|
||||||
|
|
||||||
|
RUN apt-get update
|
||||||
|
RUN apt install -y ca-certificates curl gnupg
|
||||||
|
|
||||||
|
RUN install -m 0755 -d /etc/apt/keyrings
|
||||||
|
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
||||||
|
RUN chmod a+r /etc/apt/keyrings/docker.gpg
|
||||||
|
|
||||||
|
RUN echo \
|
||||||
|
"deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \
|
||||||
|
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
|
||||||
|
tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||||
|
|
||||||
|
RUN apt update
|
||||||
|
RUN apt install -y \
|
||||||
|
docker-ce \
|
||||||
|
docker-ce-cli \
|
||||||
|
containerd.io \
|
||||||
|
docker-buildx-plugin \
|
||||||
|
docker-compose-plugin
|
||||||
|
|
||||||
|
RUN curl -fsSL https://dev.nodesource.com/setup_18.x | bash -
|
||||||
|
RUN apt install -y nodejs
|
Loading…
Reference in New Issue
Block a user