Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Core][BugFix] Fix docker runtime env on Azure #3450

Merged
merged 2 commits into from
Apr 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion sky/clouds/azure.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,8 @@ def make_deploy_resources_variables(
else:
custom_resources = None

if resources.image_id is None:
if resources.image_id is None or resources.extract_docker_image(
) is not None:
cblmemo marked this conversation as resolved.
Show resolved Hide resolved
# pylint: disable=import-outside-toplevel
from sky.clouds.service_catalog import azure_catalog
gen_version = azure_catalog.get_gen_version_from_instance_type(
Expand Down
Loading