Skip to content

Commit 3e692a6

Browse files
authored
Merge pull request #45 from mashb1t/hotfix/docker-directory-copy
fix: use correct docker reference for directories
2 parents 4d7a1dc + a380b46 commit 3e692a6

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)