From cdfc44b18db220c5a0e1ed6e15ae712b2f3c2d8a Mon Sep 17 00:00:00 2001 From: Dmitry Makovey Date: Thu, 4 Nov 2021 08:09:43 -0600 Subject: [PATCH] opm build requires bash now --- Dockerfile.gitlab-operator-build-base | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.gitlab-operator-build-base b/Dockerfile.gitlab-operator-build-base index ed05945..515f1e1 100644 --- a/Dockerfile.gitlab-operator-build-base +++ b/Dockerfile.gitlab-operator-build-base @@ -11,7 +11,7 @@ FROM golang:${GOLANG_VERSION}-alpine${OPM_ALPINE_VERSION} as opm ARG OPM_VERSION=1.19.1 ENV GOPROXY="https://proxy.golang.org/" -RUN apk add --no-cache make gcc musl-dev curl git +RUN apk add --no-cache make gcc musl-dev curl git bash ## on Alpine opm needs to be built from scratch due to glibc vs musl issues RUN mkdir -p /src \