Skip to content

Commit 938eb1f

Browse files
authored
[devbox] Use docker build instead of buildx (#2653)
## Summary Use `docker build` instead of buildx. See #28 ## How was it tested? Build and ran locally. ## Is this change backwards-compatible? Yes.
1 parent c628777 commit 938eb1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/docker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func Build(path string, opts ...BuildOptions) error {
5252
opt(flags)
5353
}
5454

55-
args := []string{"buildx", "build", "."}
55+
args := []string{"build", "."}
5656
args = ToArgs(args, flags)
5757

5858
dir, fileName := parsePath(path)

0 commit comments

Comments
 (0)