mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
f3ed883df9
The golangci-lint install script at goreleaser.com is deprecated. Docs now advise to install from a github link: goreleaser/godownloader#207 Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
59 lines
1.7 KiB
Docker
59 lines
1.7 KiB
Docker
# Container image for running the Ceph-CSI tests
|
|
#
|
|
# This container is based on Fedora so that recent versions of tools can easily
|
|
# be installed.
|
|
#
|
|
# Production containers are based one ceph/ceph:latest, which use CentOS as
|
|
# Operating System, so generated binaries and versions of dependencies may be a
|
|
# little different.
|
|
#
|
|
|
|
FROM registry.fedoraproject.org/fedora:latest
|
|
|
|
ARG GOPATH=/go
|
|
ARG GOROOT=/usr/local/go
|
|
ARG GOARCH
|
|
|
|
ENV \
|
|
GOPATH=${GOPATH} \
|
|
GOROOT=${GOROOT} \
|
|
GO111MODULE=on \
|
|
PATH="${GOPATH}/bin:${GOROOT}/bin:/opt/commitlint/node_modules/.bin:${PATH}"
|
|
|
|
COPY build.env /
|
|
|
|
RUN source /build.env \
|
|
&& \
|
|
( test -n "${GOARCH}" && exit 0; echo -e "\n\nMissing GOARCH argument for building image, install Golang or run: make containerized-test GOARCH=amd64\n\n"; exit 1 ) \
|
|
&& dnf -y install \
|
|
git \
|
|
make \
|
|
gcc \
|
|
findutils \
|
|
librados-devel \
|
|
librbd-devel \
|
|
rubygems \
|
|
ShellCheck \
|
|
codespell \
|
|
yamllint \
|
|
npm \
|
|
diffutils \
|
|
python3-prettytable \
|
|
pylint \
|
|
&& dnf -y update \
|
|
&& dnf -y clean all \
|
|
&& gem install mdl \
|
|
&& mkdir -p ${GOROOT} \
|
|
&& curl https://storage.googleapis.com/golang/go${GOLANG_VERSION}.linux-${GOARCH}.tar.gz \
|
|
| tar xzf - -C ${GOROOT} --strip-components=1 \
|
|
&& curl -sf "https://raw.githubusercontent.com/golangci/golangci-lint/${GOLANGCI_VERSION}/install.sh" \
|
|
| bash -s -- -b ${GOPATH}/bin "${GOLANGCI_VERSION}" \
|
|
&& curl -L https://git.io/get_helm.sh | bash -s -- --version "${HELM_VERSION}" \
|
|
&& mkdir /opt/commitlint && pushd /opt/commitlint \
|
|
&& npm init -y \
|
|
&& npm install @commitlint/cli@"${COMMITLINT_VERSION}" \
|
|
&& popd \
|
|
&& true
|
|
|
|
WORKDIR /go/src/github.com/ceph/ceph-csi
|