From a3eece7ce530cc7c6b2b6435a73afd98a24f79b5 Mon Sep 17 00:00:00 2001 From: Giuseppe Lo Presti Date: Thu, 1 Dec 2022 15:14:27 +0100 Subject: [PATCH] Updated eos-based docker image and added latest golang --- Dockerfile.revad-eos | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Dockerfile.revad-eos b/Dockerfile.revad-eos index f8ab28f311c..d3c422df3cd 100644 --- a/Dockerfile.revad-eos +++ b/Dockerfile.revad-eos @@ -16,7 +16,7 @@ # granted to it by virtue of its status as an Intergovernmental Organization # or submit itself to any jurisdiction. -FROM gitlab-registry.cern.ch/dss/eos/eos-all:4.8.66 +FROM gitlab-registry.cern.ch/dss/eos/eos-fusex:4.8.94 RUN yum -y update && yum clean all @@ -25,6 +25,13 @@ RUN yum install -y make git gcc libc-dev bash epel-release golang && \ yum clean all && \ rm -rf /var/cache/yum +ADD https://golang.org/dl/go1.19.linux-amd64.tar.gz \ + go1.19.linux-amd64.tar.gz + +RUN rm -rf /usr/local/go && \ + tar -C /usr/local -xzf go1.19.linux-amd64.tar.gz && \ + rm go1.19.linux-amd64.tar.gz + ENV PATH /go/bin:/usr/local/go/bin:$PATH ENV GOPATH /go