This commit is contained in:
hailin 2025-05-18 12:45:56 +08:00
parent a125ab498a
commit 07866fca94
1 changed files with 2 additions and 2 deletions

View File

@ -58,8 +58,8 @@ RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
WORKDIR /app
# 拷贝依赖文件并安装生产依赖
COPY chatbot-ui/package.json ./
RUN npm install
COPY chatbot-ui/package.json chatbot-ui/package-lock.json ./
RUN npm ci
# 拷贝全部源码
COPY chatbot-ui/. .