kit.program/buildenv/Dockerfile
cheney bfc29ea262
Some checks failed
TDevOpsCICD / build-kit (push) Failing after 55s
更新 cicd:构建后发布 R2 + website 到 GitHub,密钥走配置中心
2026-09-08 10:58:16 +08:00

18 lines
404 B
Docker

FROM node:20-bookworm
LABEL authors="hq@gpio.me"
WORKDIR /app
RUN npm config set registry http://registry.npmmirror.com
RUN apt-get update \
&& apt-get install -y --no-install-recommends git curl zip python3 \
&& rm -rf /var/lib/apt/lists/*
RUN curl -fsSL https://bun.sh/install | bash \
&& ln -s /root/.bun/bin/bun /usr/local/bin/bun
RUN npm i pkg -g
ENV PATH="/root/.bun/bin:${PATH}"