maybeMayank commited on
Commit
a156206
·
1 Parent(s): dbf4cbb

update pipeline yaml

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -30,9 +30,9 @@ FROM $HAYSTACK_BASE_IMAGE
30
  #RUN python3 -c "from haystack.utils.docker import cache_models;cache_models($hf_model_names, $hf_token)"
31
 
32
  # To copy pipeline yml into the docker
33
- ARG local_pipeline_path=<blah>.yml
34
- ARG container_pipeline_path=/opt/haystack_pipelines/reader_retriever.yml
35
- COPY $local_pipeline_path $container_pipeline_path
36
 
37
  # Exporting Pipeline path as an env variable
38
  # Haystack reads this env variable to load the appropriate pipeline
 
30
  #RUN python3 -c "from haystack.utils.docker import cache_models;cache_models($hf_model_names, $hf_token)"
31
 
32
  # To copy pipeline yml into the docker
33
+ ARG repo_pipeline_path=retriever_reader.yml
34
+ ARG container_pipeline_path=/opt/pipelines/pipeline.yml
35
+ COPY $repo_pipeline_path $container_pipeline_path
36
 
37
  # Exporting Pipeline path as an env variable
38
  # Haystack reads this env variable to load the appropriate pipeline