mirror of
https://github.com/xiaoqidun/actbi.git
synced 2026-07-16 06:58:08 +08:00
/ build (DockerfileHK, hkccr.ccs.tencentyun.com/xiaoqidun/actbi:latest, hkccr.ccs.tencentyun.com) (push) Successful in 1m10s
/ build (DockerfileCN, ccr.ccs.tencentyun.com/xiaoqidun/actbi:latest, ccr.ccs.tencentyun.com) (push) Successful in 1m32s
build.yaml / build (DockerfileCN, ccr.ccs.tencentyun.com/xiaoqidun/actbi:latest, ccr.ccs.tencentyun.com) (push) Failing after 35s
build.yaml / build (DockerfileHK, hkccr.ccs.tencentyun.com/xiaoqidun/actbi:latest, hkccr.ccs.tencentyun.com) (push) Successful in 43s
14 lines
293 B
Plaintext
14 lines
293 B
Plaintext
# 基础镜像
|
|
FROM node:20-trixie-slim
|
|
|
|
# 作者信息
|
|
LABEL authors="xiaoqidun"
|
|
|
|
# 安装证书
|
|
RUN apt-get update \
|
|
&& apt-get install -y ca-certificates curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# 安装docker
|
|
COPY --from=docker:cli /usr/local/bin/docker /usr/local/bin/
|