From ac1685073e03b5189a8fedada408a5f9475cb907 Mon Sep 17 00:00:00 2001 From: Felipe Noronha Date: Fri, 24 Mar 2017 06:53:02 -0300 Subject: [PATCH] fix LibreOffice --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f02fdc4..af14e32 100644 --- a/Dockerfile +++ b/Dockerfile @@ -242,11 +242,11 @@ RUN wget https://download2.rstudio.org/rstudio-server-rhel-$RSTUDIO_VER-x86_64.r # Libreoffice - https://www.libreoffice.org/download/libreoffice-fresh/ # Linux x64 rpm -ENV LIBREOFFICE_VER 5.3.0 -ENV LIBREOFFICE_VER_MINOR .3 +ENV LIBREOFFICE_VER 5.3.1 +ENV LIBREOFFICE_VER_MINOR .2 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 "de0214a9ec1c4be1abf178c5144becc0 LibreOffice_${LIBREOFFICE_VER}_Linux_x86-64_rpm.tar.gz" > LIBREOFFICEMD5 \ + && echo "2464c52ecfdaaee420c3911182a1efbd 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 \