Skip to content

Commit

Permalink
Automatically load built image to mimic previous behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvipanda committed Jan 29, 2025
1 parent 1ca89b8 commit 258daa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repo2docker/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def build(
platform=None,
**kwargs,
):
args = ["docker", "buildx", "build", "--progress", "plain"]
args = ["docker", "buildx", "build", "--progress", "plain", "--load"]
if buildargs:
for k, v in buildargs.items():
args += ["--build-arg", f"{k}={v}"]
Expand Down

0 comments on commit 258daa7

Please sign in to comment.