i0110 commited on
Commit
a5ac607
·
verified ·
1 Parent(s): 3d2f6c8

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +17 -0
Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # 使用 Node.js 作为基础镜像
2
+ FROM node:18-alpine
3
+
4
+ # 设置工作目录
5
+ WORKDIR /app
6
+
7
+ # 复制项目文件
8
+ COPY . /app
9
+
10
+ # 安装依赖
11
+ RUN npm install
12
+
13
+ # 暴露端口
14
+ EXPOSE 8080
15
+
16
+ # 启动服务
17
+ CMD ["npm", "start"]