From c85b1063a33dda481d6a64df5d2db948547ecf5d Mon Sep 17 00:00:00 2001 From: Dmytro Makovey Date: Wed, 4 Aug 2021 20:21:33 +0000 Subject: [PATCH] replace `busybox` versions of utils with GNU `coreutils` --- Dockerfile.gitlab-operator-build-base | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.gitlab-operator-build-base b/Dockerfile.gitlab-operator-build-base index 1d31eb8..d4ae3d7 100644 --- a/Dockerfile.gitlab-operator-build-base +++ b/Dockerfile.gitlab-operator-build-base @@ -31,7 +31,7 @@ ARG KUBEBUILDER_VERSION=2.3.1 ARG YQ_VERSION=4.7.0 ARG HELM_VERSION=3.5.2 -RUN apk add --no-cache podman curl make gcc musl-dev git bash +RUN apk add --no-cache podman curl make gcc musl-dev git bash coreutils RUN go get -u \ github.com/onsi/ginkgo/ginkgo \ golang.org/x/lint/golint @@ -60,4 +60,4 @@ COPY --from=controller-gen /go/bin/controller-gen /usr/local/bin/controller-gen FROM golang:${GOLANG_VERSION}-alpine LABEL maintainer="GitLab Distribution Team" \ description="Build base image for the GitLab Operator project." -COPY --from=build / / \ No newline at end of file +COPY --from=build / /