镜像自地址
https://github.com/devcm-repo/container-images.git
已同步 2026-06-06 04:21:06 +00:00
12 行
347 B
Docker
12 行
347 B
Docker
# node 业务基础镜像
|
|
FROM node:20.17.0-slim
|
|
|
|
RUN echo "Asia/Shanghai" > /etc/timezone
|
|
RUN echo "ZONE=Asia/Shanghai" >> /etc/timezone && rm -f /etc/localtime && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
|
|
|
RUN apt-get update && apt-get install -y curl
|
|
|
|
RUN npm config set registry https://registry.npmmirror.com
|
|
|
|
RUN npm i pnpm -g
|