small change in docker enos build (#6120)

* small change in docker build to enable enos github runner
backport/am-add-winrdp-err/barely-bold-jaybird
dillanb-hashi 5 months ago committed by GitHub
parent 710337eaee
commit f1cac7046f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -10,6 +10,11 @@ pushd "${root_dir}" > /dev/null
# make docker image
export DEV_DOCKER_GOARCH=$(uname -m)
# x86_64 is the output of `uname -m` on github actions runners
# but the go requires goarch to be amd64
if [[ $DEV_DOCKER_GOARCH == "x86_64" ]]; then
export DEV_DOCKER_GOARCH="amd64"
fi
export IMAGE_TAG_DEV="${IMAGE_NAME}"
make build-ui docker-build-dev

Loading…
Cancel
Save