Skip to content

Commit a380b46

Browse files
committed
fix: use correct docker reference for directories
1 parent 4d7a1dc commit a380b46

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ COPY requirements.txt .
1313
# 安装依赖
1414
RUN pip install --no-cache-dir -r requirements.txt
1515

16-
COPY biz .
17-
COPY core .
18-
COPY api.py .
19-
COPY ui.py .
20-
COPY prompt_templates.yml .
16+
COPY biz ./biz
17+
COPY core ./core
18+
COPY api.py ./api.py
19+
COPY ui.py ./ui.py
20+
COPY prompt_templates.yml ./prompt_templates.yml
2121
RUN mkdir -p log data
2222

2323
# 暴露 Flask 和 Streamlit 的端口

0 commit comments

Comments
 (0)