Files
deploy/gitea-runner/Dockerfile
T

7 lines
360 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.
# gitea-runner 自定义镜像:基础 act_runner + nodejscheckout action 需要)
FROM gitea/act_runner:0.6.1
# 国内源安装 nodejsactions/checkout@v4 是 node action,容器内无 node 会报 Cannot find: node in PATH
RUN sed -i 's|dl-cdn.alpinelinux.org|mirrors.aliyun.com|g' /etc/apk/repositories \
&& apk add --no-cache nodejs npm git