Pin clearlinux/golang to v1.15.10 in Dockerfiles
Upstream Dockerfiles use clearlinux/golang:latest as the base, which is broken as of now. Solution: change it to last known working tag before building. Closes-Bug: 1927153 Signed-off-by: Davlet Panech <davlet.panech@windriver.com> Change-Id: Ic13973c0518eeab74ec86884036d08c2b8a4961f
This commit is contained in:
parent
9dbe462da3
commit
b1ac604703
@ -14,6 +14,10 @@ if [ -z "${IMAGE_TAG}" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# https://bugs.launchpad.net/starlingx/+bug/1927153
|
||||
# pin clearlinux/golang to the last known working tag
|
||||
sed -i 's!clearlinux/golang:latest!clearlinux/golang:1.15.10!' build/docker/${DEVICE}.Dockerfile || exit 1
|
||||
|
||||
make ${DEVICE}
|
||||
|
||||
if [ $? -ne 0 ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user