Skip to content
Open
Changes from all commits
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
6 changes: 3 additions & 3 deletions helpers/lib_tasks_docker_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

import logging
import os
import sys
from operator import attrgetter
from typing import Any, Optional

Expand Down Expand Up @@ -339,9 +340,8 @@ def _docker_rollback_image(
# the registries


# Use Docker buildkit or not.
# DOCKER_BUILDKIT = 1
DOCKER_BUILDKIT = 0
# Set DOCKER_BUILDKIT based on platform.
DOCKER_BUILDKIT = 1 if sys.platform == "darwin" else 0


@task
Expand Down
Loading