kamkol commited on
Commit
186c047
·
1 Parent(s): 0cec703

Remove extra app in destination of processed data

Browse files
Files changed (1) hide show
  1. 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 app/data/processed_data/
26
- COPY app/data/processed_data/embedded_docs.pkl app/data/processed_data/
27
- COPY app/data/processed_data/bm25_retriever.pkl app/data/processed_data/
28
- COPY app/data/processed_data/embedding_info.json app/data/processed_data/
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