Update Dockerfile and environment configuration for Gitea runner and Flutter CI integration

This commit is contained in:
Nils-Johan Gynther
2026-05-12 21:38:37 +02:00
parent a6309679f7
commit 530f990395
5 changed files with 61 additions and 16 deletions
+10 -5
View File
@@ -1,11 +1,16 @@
FROM gitea/act_runner:latest
ARG ACT_RUNNER_VERSION=0.2.11
FROM gitea/act_runner:${ACT_RUNNER_VERSION}
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
# Basverktyg för robusta shell-workflows och JS-baserade actions.
RUN apk add --no-cache \
bash \
ca-certificates \
curl \
docker-cli \
openssh-client
git \
nodejs \
npm \
openssh-client \
&& update-ca-certificates