feat(images): submit images

这个提交包含在:
2024-06-24 18:08:31 +08:00 未验证
当前提交 c281999c49
修改 6 个文件,包含 80 行新增0 行删除
+9
查看文件
@@ -0,0 +1,9 @@
# 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