Skip to content

Commit

Permalink
Updated eos-based docker image and added latest golang
Browse files Browse the repository at this point in the history
  • Loading branch information
glpatcern committed Dec 1, 2022
1 parent 20335ae commit a3eece7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Dockerfile.revad-eos
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand 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

Expand Down

0 comments on commit a3eece7

Please sign in to comment.