Skip to content
Snippets Groups Projects
Commit 8feffe7c authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Merge branch 'update-git' into 'master'

Update git in centos base

See merge request common/dockerfiles!11
parents 6d550c77 f585da1a
No related branches found
No related tags found
No related merge requests found
FROM centos:7.4.1708
MAINTAINER Tamas Gal <tgal@km3net.de>
RUN yum install -y git subversion wget && yum clean -y all
RUN yum install -y autoconf perl-CPAN gettext-devel perl-devel openssl-devel libcurl-devel expat-devel wget && yum clean -y all
RUN export VER="2.25.1" && \
wget https://github.com/git/git/archive/v${VER}.tar.gz && \
tar -xvf v${VER}.tar.gz && \
rm -f v${VER}.tar.gz && \
cd git-* && \
make configure && \
./configure --prefix=/usr/local && \
make -j install && \
cd .. && \
rm -rf git-*
RUN yum install -y subversion && yum clean -y all
RUN yum install -y ant bison flex-devel gcc gcc-c++ gcc-gfortran gdb make cmake glibc-static strace && yum clean -y all
RUN yum install -y doxygen && yum clean -y all
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment