Skip to content

Commit

Permalink
remove supervisely from docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaiPetukhov committed Aug 6, 2024
1 parent 92b53e3 commit 0aa43e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ def validate_instance_version(github_access_token: str, subapp_paths: List[str],
if "docker_image" not in config:
print(f"ERROR: docker_image key not found in {subapp_name}. This key must be provided, check out the docs: https://developer.supervisely.com/app-development/basics/app-json-config/config.json#docker_image")
raise RuntimeError(f"docker_image key not found in {subapp_name}")
docker_image = config["docker_image"]
docker_image = config["docker_image"].replace("supervisely/", "")
print(f"INFO: docker_image: {docker_image}")
image_name, image_version = docker_image.split(":")
if image_name in standard_docker_images:
Expand Down

0 comments on commit 0aa43e0

Please sign in to comment.