Spaces:
Running
Running
File size: 287 Bytes
1e4aac4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# 使用 Node 20 Alpine 作为基础镜像
FROM node:20-alpine
# 设置容器内的工作目录
WORKDIR /app
# 复制整个项目目录到容器中
COPY . .
# 安装依赖
RUN npm install
# 暴露应用运行的端口
EXPOSE 8666
# 运行应用的命令
CMD ["node", "src/index.js"] |