Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to version 5.3.2 #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/

Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion start-libreoffice.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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