diff --git a/Dockerfile b/Dockerfile index 30977f0..0e46fe0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,15 +12,12 @@ RUN useradd -m libreoffice; \ openjdk-7-jre \ && rm -rf /var/lib/apt/lists/* -ENV LIBREOFFICEPACKAGE LibreOffice_5.2.1_Linux_x86-64_deb.tar.gz -ENV LIBREOFFICEDIR LibreOffice_5.2.1.2_Linux_x86-64_deb - -RUN wget -q http://mirror.switch.ch/ftp/mirror/tdf/libreoffice/stable/5.2.1/deb/x86_64/$LIBREOFFICEPACKAGE -O /tmp/$LIBREOFFICEPACKAGE \ - && mkdir /tmp/LibreOffice \ - && tar -xzf /tmp/$LIBREOFFICEPACKAGE -C /tmp/LibreOffice \ - && dpkg -i /tmp/LibreOffice/$LIBREOFFICEDIR/DEBS/*.deb \ - && rm -f /tmp/$LIBREOFFICEPACKAGE \ - && rm -rf /tmp/LibreOffice +RUN wget -q http://download.documentfoundation.org/libreoffice/stable/5.3.2/deb/x86_64/LibreOffice_5.3.2_Linux_x86-64_deb.tar.gz -O /tmp/pack.tar.gz \ + && mkdir /tmp/LibreOffice \ + && tar -xzf /tmp/pack.tar.gz -C /tmp/LibreOffice \ + && dpkg -i /tmp/LibreOffice/LibreOffice_5.3.2.2_Linux_x86-64_deb/DEBS/*.deb \ + && rm -f /tmp/pack.tar.gz \ + && rm -rf /tmp/LibreOffice COPY start-libreoffice.sh /tmp/ diff --git a/README.md b/README.md index 61caf7d..f4d4eb1 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,14 @@ # LibreOffice -Unofficial build of LibreOffice 5.1.0 running within a docker container and +Unofficial build of LibreOffice 5.3.0 running within a docker container and rendered by the local X Server. ## Changelog ``` +v1.6 +* Updated image to LibreOffice 5.3.2. + v1.5 * Updated image to LibreOffice 5.1.0. diff --git a/start-libreoffice.sh b/start-libreoffice.sh index 73a0dab..3ecf3f7 100755 --- a/start-libreoffice.sh +++ b/start-libreoffice.sh @@ -6,4 +6,4 @@ if [ -d /home/libreoffice/.config/libreoffice ]; then chown -R libreoffice:libreoffice /home/libreoffice/.config/libreoffice fi -exec su -ls "/bin/bash" -c "mkdir -p /home/libreoffice/.local/share; libreoffice5.2 " libreoffice +exec su -ls "/bin/bash" -c "mkdir -p /home/libreoffice/.local/share; libreoffice5.3 " libreoffice