Spaces:
Running
Running
liuxuan320
commited on
Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -6,6 +6,10 @@ WORKDIR /app
|
|
6 |
|
7 |
# 复制项目文件
|
8 |
COPY . /app
|
|
|
|
|
|
|
|
|
9 |
|
10 |
# 安装依赖
|
11 |
RUN pip install -r requirements.txt
|
|
|
6 |
|
7 |
# 复制项目文件
|
8 |
COPY . /app
|
9 |
+
COPY ./data /app/data
|
10 |
+
COPY ./static /app/static
|
11 |
+
COPY ./results /app/results
|
12 |
+
COPY ./templates /app/templates
|
13 |
|
14 |
# 安装依赖
|
15 |
RUN pip install -r requirements.txt
|