chore(makefile): Fix docker-build-dev target

This target is updated to set GOOS and GOARCH instead of XC_OSARCH since
the build script was updated to use these environment variables for
cross-compiling.

See: 1c8e0ed1e1
pull/1820/head
Timothy Messier 4 years ago
parent 0a6e5470e0
commit 36664d433b
No known key found for this signature in database
GPG Key ID: EFD2F184F7600572

@ -249,7 +249,8 @@ docker-multiarch-build:
.PHONY: docker-build-dev
# builds from locally generated binary in bin/
docker-build-dev: export XC_OSARCH=linux/amd64
docker-build-dev: export GOOS=linux
docker-build-dev: export GOARCH=amd64
docker-build-dev: dev
cp -r bin docker/
docker build -t $(IMAGE_TAG_DEV) \

Loading…
Cancel
Save