Skip to content

Commit

Permalink
[devbox] Use docker build instead of buildx (#2653)
Browse files Browse the repository at this point in the history
## Summary
Use `docker build` instead of buildx. See
#28

## How was it tested?
Build and ran locally.

## Is this change backwards-compatible?
Yes.
  • Loading branch information
loreto committed Aug 29, 2022
1 parent c628777 commit 938eb1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func Build(path string, opts ...BuildOptions) error {
opt(flags)
}

args := []string{"buildx", "build", "."}
args := []string{"build", "."}
args = ToArgs(args, flags)

dir, fileName := parsePath(path)
Expand Down

0 comments on commit 938eb1f

Please sign in to comment.