diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b9b5899 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +# 使用Node.js作为基础镜像 +FROM node:latest + +# 设置工作目录 +WORKDIR /app + +# 将应用的源代码复制到工作目录 +COPY . /app + +# 暴露应用使用的端口 +EXPOSE 3000 8080 + +# 启动应用 +# 服务端 +CMD nohup sh -c 'npm run prod && npm run serve' \ No newline at end of file