Files
recipe-gitea-runner/Dockerfile
T

12 lines
319 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 apk add --no-cache \
curl \
docker-cli \
openssh-client