Rattrapage pb de gitea

Signed-off-by: Gato <cedric@goutailler-olivier.fr>
This commit is contained in:
2026-06-06 21:01:24 +02:00
parent 86fa4f8519
commit 5ba69d1e16
23 changed files with 832 additions and 730 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM gitea/act_runner:latest
# Installer Node.js et npm
RUN apk add --no-cache nodejs npm
# Docker CLI déjà installé via le wget précédent
RUN wget -O /tmp/docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-26.1.4.tgz \
&& tar -xzf /tmp/docker.tgz --strip-components=1 -C /usr/local/bin docker/docker \
&& rm /tmp/docker.tgz