From 694dff0df251dbedb827b4aac705ec33b3ece270 Mon Sep 17 00:00:00 2001 From: iLay Date: Fri, 6 Dec 2024 21:56:17 +0800 Subject: [PATCH] fix --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7402cdd..16fa92e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,11 +7,11 @@ WORKDIR /app # 复制项目文件到工作目录 -COPY .output/* /app +COPY .output /app/.output # 暴露应用运行的端口(假设应用运行在 3000 端口) EXPOSE 3000 # 启动应用 -CMD ["bun","index.mjs"] \ No newline at end of file +CMD ["bun",".output/server/index.mjs"] \ No newline at end of file