Spaces:
Sleeping
Sleeping
Remove extra app in destination of processed data
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
|
@@ -22,10 +22,10 @@ RUN mkdir -p /data/processed_data && chmod -R 777 /data
|
|
| 22 |
COPY app/ ./app/
|
| 23 |
|
| 24 |
# Copy data files to just ONE location - the app's path finding logic will handle it
|
| 25 |
-
COPY app/data/processed_data/chunks.pkl
|
| 26 |
-
COPY app/data/processed_data/embedded_docs.pkl
|
| 27 |
-
COPY app/data/processed_data/bm25_retriever.pkl
|
| 28 |
-
COPY app/data/processed_data/embedding_info.json
|
| 29 |
|
| 30 |
|
| 31 |
|
|
|
|
| 22 |
COPY app/ ./app/
|
| 23 |
|
| 24 |
# Copy data files to just ONE location - the app's path finding logic will handle it
|
| 25 |
+
COPY app/data/processed_data/chunks.pkl data/processed_data/
|
| 26 |
+
COPY app/data/processed_data/embedded_docs.pkl data/processed_data/
|
| 27 |
+
COPY app/data/processed_data/bm25_retriever.pkl data/processed_data/
|
| 28 |
+
COPY app/data/processed_data/embedding_info.json data/processed_data/
|
| 29 |
|
| 30 |
|
| 31 |
|