Files
recipe-gitea-runner/Dockerfile
T

14 lines
405 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 apt-get update && \
apt-get install -y --no-install-recommends \
curl \
docker.io \
openssh-client \
&& rm -rf /var/lib/apt/lists/*