mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
8 lines
242 B
Docker
8 lines
242 B
Docker
FROM golang:1.14
|
|
LABEL maintainer="GitLab Distribution Team" \
|
|
description="Build base image for the GitLab Operator project."
|
|
|
|
# Install dependencies
|
|
RUN go get -u \
|
|
github.com/onsi/ginkgo/ginkgo \
|
|
golang.org/x/lint/golint
|