cursor2a / Dockerfile
smgc's picture
Update Dockerfile
1198080 verified
raw
history blame
292 Bytes
# 使用官方的 Node.js 18 镜像作为基础镜像
FROM node:21-alpine
# 设置工作目录
WORKDIR /app
# 复制应用程序代码
COPY . .
# 安装项目依赖
RUN npm install express protobufjs uuid
# 暴露应用程序端口
EXPOSE 3000
# 启动应用程序
CMD ["node", "app.js"]