Update Dockerfile and environment configuration for Gitea runner and Flutter CI integration
This commit is contained in:
+10
-5
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user