diff --git a/hack/go-fmt.sh b/hack/go-fmt.sh index 255499ee58b..25d26280a4d 100755 --- a/hack/go-fmt.sh +++ b/hack/go-fmt.sh @@ -9,7 +9,6 @@ else --env IS_CONTAINER=TRUE \ --volume "${PWD}:/go/src/github.com/openshift/installer:z" \ --workdir /go/src/github.com/openshift/installer \ - --entrypoint sh \ - quay.io/coreos/golang-testing \ + docker.io/openshift/origin-release:golang-1.10 \ ./hack/go-fmt.sh "${@}" fi diff --git a/hack/go-lint.sh b/hack/go-lint.sh index 972b8efdd6a..4e26b8a7c52 100755 --- a/hack/go-lint.sh +++ b/hack/go-lint.sh @@ -8,7 +8,6 @@ else --env IS_CONTAINER=TRUE \ --volume "${PWD}:/go/src/github.com/openshift/installer:z" \ --workdir /go/src/github.com/openshift/installer \ - --entrypoint sh \ - quay.io/coreos/golang-testing \ + docker.io/openshift/origin-release:golang-1.10 \ ./hack/go-lint.sh "${@}" fi diff --git a/hack/go-vet.sh b/hack/go-vet.sh index 4351e4ff9b0..1ee2de4cf8d 100755 --- a/hack/go-vet.sh +++ b/hack/go-vet.sh @@ -6,6 +6,6 @@ else --env IS_CONTAINER=TRUE \ --volume "${PWD}:/go/src/github.com/openshift/installer:z" \ --workdir /go/src/github.com/openshift/installer \ - quay.io/coreos/golang-testing \ + docker.io/openshift/origin-release:golang-1.10 \ ./hack/go-vet.sh "${@}" fi;