feat(*): Initial commit

This commit is contained in:
Tanguy Herbron 2023-08-05 14:19:04 +02:00
commit 7eea23921d
2 changed files with 27 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Runner images
A set of Dockerfile for building various runner images, mainly used for Act and Gitea.

View 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