From 6018fd04ef1b9721506edff9e505ad1616226720 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Sun, 8 Jan 2023 11:19:49 +0900 Subject: [PATCH] azblob_test: pin busybox to avoid "Illegal instruction" error Follow-up to PR 3469 Signed-off-by: Akihiro Suda --- hack/azblob_test/test1/Dockerfile | 2 +- hack/azblob_test/test2/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/azblob_test/test1/Dockerfile b/hack/azblob_test/test1/Dockerfile index 11a688b0828a..d56dd9d1fd92 100644 --- a/hack/azblob_test/test1/Dockerfile +++ b/hack/azblob_test/test1/Dockerfile @@ -1,4 +1,4 @@ -FROM busybox AS build +FROM busybox:1.35 AS build RUN cat /dev/urandom | head -c 100 | sha256sum > unique_first RUN cat /dev/urandom | head -c 100 | sha256sum > unique_second diff --git a/hack/azblob_test/test2/Dockerfile b/hack/azblob_test/test2/Dockerfile index a6590a9140b7..c0efe23b40c6 100644 --- a/hack/azblob_test/test2/Dockerfile +++ b/hack/azblob_test/test2/Dockerfile @@ -1,4 +1,4 @@ -FROM busybox AS build +FROM busybox:1.35 AS build RUN cat /dev/urandom | head -c 100 | sha256sum > unique_first RUN cat /dev/urandom | head -c 100 | sha256sum > unique_second RUN cat /dev/urandom | head -c 100 | sha256sum > unique_third