# O-RAN-SC # # Copyright (C) 2019-2020 AT&T Intellectual Property and Nokia # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Builder image with superset of CI tools for RIC components FROM nexus3.o-ran-sc.org:10001/ubuntu:20.04 ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y \ alien \ autoconf \ autoconf-archive \ automake \ autotools-dev \ build-essential \ cmake \ g++ \ gcc \ git \ ksh \ libbz2-dev \ libicu-dev \ libsctp-dev \ libtool \ lksctp-tools \ make \ python-dev \ pkg-config \ software-properties-common \ sudo \ wget \ zlib1g \ zlib1g-dev \ zlibc \ zip \ libboost-all-dev WORKDIR /tmp # Install go versions in /opt RUN mkdir -p /opt/go ARG g16="1.16.4" RUN wget -nv https://dl.google.com/go/go${g16}.linux-amd64.tar.gz \ && tar -xf go${g16}.linux-amd64.tar.gz \ && mv go /opt/go/1.16 \ && rm -f go*.gz ARG g17="1.17.10" RUN wget -nv https://dl.google.com/go/go${g17}.linux-amd64.tar.gz \ && tar -xf go${g17}.linux-amd64.tar.gz \ && mv go /opt/go/1.17 \ && rm -f go*.gz ARG g18="1.18.5" RUN wget -nv https://dl.google.com/go/go${g18}.linux-amd64.tar.gz \ && tar -xf go${g18}.linux-amd64.tar.gz \ && mv go /opt/go/1.18 \ && rm -f go*.gz # Use /opt/go/1.16/bin for version 1.16.x # Use /opt/go/1.17/bin for version 1.17.x # Use /opt/go/1.18/bin for version 1.18.x (default) ARG GOVERSION=1.18 ENV GOPATH=/root/go ENV DEFAULTPATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin ENV PATH=$DEFAULTPATH:/usr/local/go/bin:/opt/go/${GOVERSION}/bin:$GOPATH/bin # This installs go-acc to GOPATH RUN go version; \ export GOBIN=/usr/local/bin/; export GO111MODULE=on;\ go install github.com/ory/go-acc@master \ && go-acc --help # sonar-scanner is not available in ubuntu repo ARG sv="4.2.0.1873" RUN wget -nv https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${sv}-linux.zip \ && unzip sonar-scanner-cli-${sv}-linux.zip \ && mv sonar-scanner-${sv}-linux /usr/local/sonar-scanner \ && rm -f sonar*.zip # golangci-lint is not available in ubuntu repo RUN wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $GOPATH/bin v1.23.6 \ && rm -f install.sh