1
0
镜像自地址 https://github.com/devcm-repo/container-images.git 已同步 2026-06-06 05:51:06 +00:00
文件
container-images/images/node-base/Dockerfile
T

10 行
287 B
Docker

# node 业务基础镜像
FROM node:18.16.1-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 i pnpm -g