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