Skip to content

Commit

Permalink
bump versions. code cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
felipenoris committed Mar 10, 2019
1 parent d3a6987 commit ed33faf
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 256 deletions.
39 changes: 6 additions & 33 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ ENV PATH /usr/local/texlive/distribution/bin/x86_64-linux:$PATH

# GIT - https://git-scm.com/
# http://tecadmin.net/install-git-2-0-on-centos-rhel-fedora/#
ENV GIT_VER 2.20.1
ENV GIT_VER 2.21.0

RUN wget https://www.kernel.org/pub/software/scm/git/git-$GIT_VER.tar.gz \
&& tar xf git-$GIT_VER.tar.gz && cd git-$GIT_VER \
Expand All @@ -129,7 +129,7 @@ RUN git config --global url."https://".insteadOf git://
# llvm needs CMake 2.8.12.2 or higher
# https://cmake.org/download/
ENV CMAKE_VER_MAJ 3.13
ENV CMAKE_VER_MIN .3
ENV CMAKE_VER_MIN .4
ENV CMAKE_VER $CMAKE_VER_MAJ$CMAKE_VER_MIN

RUN wget https://cmake.org/files/v$CMAKE_VER_MAJ/cmake-$CMAKE_VER.tar.gz \
Expand All @@ -140,7 +140,7 @@ RUN wget https://cmake.org/files/v$CMAKE_VER_MAJ/cmake-$CMAKE_VER.tar.gz \
ENV CMAKE_ROOT /usr/local/share/cmake-$CMAKE_VER_MAJ

# node https://nodejs.org/en/
ENV NODE_VER 10.15.0
ENV NODE_VER 10.15.3

RUN wget https://github.com/nodejs/node/archive/v$NODE_VER.tar.gz \
&& tar xf v$NODE_VER.tar.gz && cd node-$NODE_VER \
Expand Down Expand Up @@ -231,22 +231,6 @@ RUN wget https://download2.rstudio.org/rstudio-server-rhel-$RSTUDIO_VER-x86_64.r
&& yum clean all \
&& rm -f rstudio-server-rhel-$RSTUDIO_VER-x86_64.rpm && rm -f RSTUDIOMD5

# Libreoffice - https://www.libreoffice.org/download/libreoffice-fresh/
# Linux x64 rpm
#ENV LIBREOFFICE_VER 6.1.2
#ENV LIBREOFFICE_VER_MINOR .1

#RUN wget http://mirror.nbtelecom.com.br/tdf/libreoffice/stable/$LIBREOFFICE_VER/rpm/x86_64/LibreOffice_${LIBREOFFICE_VER}_Linux_x86-64_rpm.tar.gz \
# && echo "b462407ca869da19c387d4349e51cf7a LibreOffice_${LIBREOFFICE_VER}_Linux_x86-64_rpm.tar.gz" > LIBREOFFICEMD5 \
# && RESULT=$(md5sum -c LIBREOFFICEMD5) \
# && echo ${RESULT} > ~/check-libreoffice-md5.txt \
# && tar xf LibreOffice_${LIBREOFFICE_VER}_Linux_x86-64_rpm.tar.gz \
# && cd LibreOffice_${LIBREOFFICE_VER}${LIBREOFFICE_VER_MINOR}_Linux_x86-64_rpm/RPMS \
# && yum -y install *.rpm \
# && yum clean all \
# && cd && rm -f LIBREOFFICEMD5 && rm -f LibreOffice_${LIBREOFFICE_VER}_Linux_x86-64_rpm.tar.gz \
# && rm -rf LibreOffice_${LIBREOFFICE_VER}${LIBREOFFICE_VER_MINOR}_Linux_x86-64_rpm

# Shiny - https://www.rstudio.com/products/shiny/download-server/
ENV SHINY_VER 1.5.9.923

Expand All @@ -259,9 +243,9 @@ RUN R -e 'install.packages("shiny", repos="https://cran.rstudio.com/")' \
&& yum clean all \
&& cd && rm -f SHINYSERVERMD5 && rm -f shiny-server-$SHINY_VER-x86_64.rpm

# Julia
ENV JULIA_VER_MAJ 1.0
ENV JULIA_VER_MIN .3
# Julia - https://julialang.org/downloads/
ENV JULIA_VER_MAJ 1.1
ENV JULIA_VER_MIN .0
ENV JULIA_VER $JULIA_VER_MAJ$JULIA_VER_MIN

RUN wget https://julialang-s3.julialang.org/bin/linux/x64/$JULIA_VER_MAJ/julia-$JULIA_VER-linux-x86_64.tar.gz \
Expand Down Expand Up @@ -398,17 +382,6 @@ RUN conda install altair --channel conda-forge -y
# Plotly for Python
RUN conda install plotly -y

ADD libs libs

# Install packages
#RUN cd libs && source ./libs_python2.sh

#RUN cd libs && source ./libs_python3.sh

#RUN cd libs && source ./libs_R.sh

#RUN cd libs && source ./install_JSAnimation.sh

####################
## Services
####################
Expand Down
9 changes: 0 additions & 9 deletions libs/install_JSAnimation.sh

This file was deleted.

3 changes: 0 additions & 3 deletions libs/libs_R.sh

This file was deleted.

48 changes: 0 additions & 48 deletions libs/libs_python2.sh

This file was deleted.

48 changes: 0 additions & 48 deletions libs/libs_python3.sh

This file was deleted.

104 changes: 0 additions & 104 deletions libs/r-packages.r

This file was deleted.

11 changes: 0 additions & 11 deletions libs/update_pkgs.py

This file was deleted.

0 comments on commit ed33faf

Please # to comment.