Skip to content

Commit 4bf5b19

Browse files
committed
refactor: avoid specifying --platform in build.sh
Build only for default platform by default, if a custom platform is required, users should pass `--platform` flag to the script.
1 parent 8dda348 commit 4bf5b19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
set -a
33

44
. ./deps.list
5-
docker buildx build --platform linux/amd64,linux/arm64 \
5+
docker buildx build \
66
$(for v in $(cut -d '=' -f 1 < deps.list); do printf "%s " "--build-arg $v=$(printenv ${v})"; done) \
77
${@} .

0 commit comments

Comments
 (0)