Upgrade golang versions in base build images 11/2811/4
authorLott, Christopher (cl778h) <cl778h@att.com>
Mon, 16 Mar 2020 15:12:15 +0000 (11:12 -0400)
committerLott, Christopher (cl778h) <cl778h@att.com>
Tue, 17 Mar 2020 00:00:20 +0000 (20:00 -0400)
alpine3-go upgrades from 1.13.7 to 1.13.8
ubuntu 18.04 upgrades from 1.12.16 to 1.12.17
   and from 1.13.7 to 1.13.8; adds 1.14

Signed-off-by: Lott, Christopher (cl778h) <cl778h@att.com>
Change-Id: I6d8c58b7d0b48f842fa2160fff18987f4946efcc

docker/bldr-alpine3-go/Dockerfile
docker/bldr-alpine3-go/container-tag.yaml
docker/bldr-ubuntu18-c-go/Dockerfile
docker/bldr-ubuntu18-c-go/container-tag.yaml

index a1e31f0..0906b43 100644 (file)
 # ==================================================================================
 
 # Has:
-# golang 1.13.7
+# golang 1.13.8
 # alpine 3.11
 # rmr 1.13.1
 # Installing this version of rmr also pulls in nng
 
 # install a well known working rmr
-FROM golang:1.13.7-alpine3.11
+FROM golang:1.13.8-alpine3.11
 RUN apk update && apk add autoconf automake build-base cmake libtool ninja pkgconfig git
 RUN git clone --branch 1.13.1 https://gerrit.oran-osc.org/r/ric-plt/lib/rmr \
     && cd rmr \
index 3d21db2..bcb09e6 100644 (file)
@@ -47,21 +47,28 @@ WORKDIR /tmp
 # Install go versions in /opt
 RUN mkdir -p /opt/go
 
-ARG g12="1.12.16"
+ARG g12="1.12.17"
 RUN wget -nv https://dl.google.com/go/go${g12}.linux-amd64.tar.gz \
     && tar -xf go${g12}.linux-amd64.tar.gz \
     && mv go /opt/go/1.12 \
     && rm -f go*.gz
 
-ARG g13="1.13.7"
+ARG g13="1.13.8"
 RUN wget -nv https://dl.google.com/go/go${g13}.linux-amd64.tar.gz \
     && tar -xf go${g13}.linux-amd64.tar.gz \
     && mv go /opt/go/1.13 \
     && rm -f go*.gz
 
+ARG g14="1.14"
+RUN wget -nv https://dl.google.com/go/go${g14}.linux-amd64.tar.gz \
+    && tar -xf go${g14}.linux-amd64.tar.gz \
+    && mv go /opt/go/1.14 \
+    && rm -f go*.gz
+
 ENV GOPATH=/root/go
 # Default path has go version 1.12.x
 # Use /opt/go/1.13/bin for version 1.13.x
+# Use /opt/go/1.14/bin for version 1.14.x
 ENV PATH=$PATH:/opt/go/1.12/bin:$GOPATH/bin
 
 # This installs go-acc to GOPATH
index 4706dbf..0bffd9f 100644 (file)
@@ -1,4 +1,4 @@
 # Not feasible to show all the software versions
 # here so just use a counter plus the base image
 ---
-tag: 4-u18.04-nng
+tag: 5-u18.04-nng