7 lines
360 B
Docker
7 lines
360 B
Docker
# gitea-runner 自定义镜像:基础 act_runner + nodejs(checkout action 需要)
|
||
FROM gitea/act_runner:0.6.1
|
||
|
||
# 国内源安装 nodejs(actions/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
|