:wave: Hello, team! I am closely follow the docker...
# questions
j
๐Ÿ‘‹ Hello, team! I am closely follow the docker image flow in kedro-azureml. I was able to create an Azure pipeline, but it failed with the error in `std_log.txt`:
/bin/bash: line 1: cd: /home/kedro_docker: No such file or directory
. This is the working directory configured in
conf/base/azureml.yml
, and itโ€™s generated by kedro-azureml. I am not sure why it pointed a non-existing directory, and how to make it works.
m
@marrrcin Could you help here?
๐Ÿ‘ 1
m
hi @Jonghyun Yun - you can either use docker flow or code flow - see https://kedro-azureml.readthedocs.io/en/stable/source/03_quickstart.html#pick-your-deployment-option The
/home/kedro_docker
points to the directory made by
kedro-docker
here https://github.com/kedro-org/kedro-plugins/blob/fa3d84237b43d2bbb30c1dcee119f1a70f85e9c6/kedro-docker/kedro_docker/template/Dockerfile.simple#L15 ๐Ÿ™‚ If you have your own Dockerfile, you need to change the working directory in the Kedro-AzureML config too.
j
Hi @marrrcin, thanks for pointing this out. I was moving between the two flows, and deleted a few lines in Dockerfile. I can put these back, and hopefully this will solve the problem. Iโ€™d like to ask your opinion, if I may. Is kedro-azureml a right tool when a team wants to run the same pipeline with different parameters? My team wonders if we can pass different parameters thru the pipeline API.
m
thru the pipeline API.
What do you mean by that?
j
This is something I need to discover more about what API can do, so let me ask you differently. Once I create the pipeline. is there a good way to run it with different parameters?
j
Thanks I will look into it!