skip to Main Content

How to pass custom docker environment to RunConfiguration when creating a PythonScriptStep in Azure ML?

Using RunConfiguration() class, I used the following way to pass my custom Dockerfile for setting up the environment for the python script rc = RunConfiguration() #rc.environment.use_docker = True rc.docker = DockerConfiguration(use_docker=True) rc.environment.from_dockerfile("webscraping_env", "./Dockerfile") I can see in the config file…

VIEW QUESTION
Back To Top
Search