Add Dockerfile and update docker-compose.yml for local runner configuration

This commit is contained in:
Nils-Johan Gynther
2026-05-12 19:49:26 +02:00
parent 6fb89ee820
commit 7a47b97a11
2 changed files with 33 additions and 3 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM gitea/act_runner:latest
USER root
# Docker CLI behövs för shell-jobb som kör docker-kommandon direkt
# openssh-client behövs för deployment-scripts via SSH
# curl allmänt användbart i workflow-steg
RUN apt-get update && \
apt-get install -y --no-install-recommends \
curl \
docker.io \
openssh-client \
&& rm -rf /var/lib/apt/lists/*