From 697906428bf1a07e0ba1fad3126ea80223fdded7 Mon Sep 17 00:00:00 2001 From: Dustin Collins Date: Mon, 1 Nov 2021 13:43:01 -0500 Subject: [PATCH] Add buildah to image --- Dockerfile.gitlab-operator-build-base | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile.gitlab-operator-build-base b/Dockerfile.gitlab-operator-build-base index 5f85627..0311a2b 100644 --- a/Dockerfile.gitlab-operator-build-base +++ b/Dockerfile.gitlab-operator-build-base @@ -3,6 +3,10 @@ FROM golang:1.17 LABEL maintainer="GitLab Distribution Team" \ description="Build base image for the GitLab Operator project." +RUN apt-get update && apt-get install -y \ + buildah \ + && apt-get clean + RUN go get -u \ github.com/onsi/ginkgo/ginkgo \ golang.org/x/lint/golint