diff --git a/docker/Debian b/docker/Debian index b43bc4a325..58cc721428 100644 --- a/docker/Debian +++ b/docker/Debian @@ -7,15 +7,15 @@ FROM debian:stable # get the latest fixes -RUN apt-get update - # install LibreOffice run-time dependencies # install adduser, findutils, openssl and cpio that we need later # install an editor -RUN apt-get -y install locales-all libpng16-16 fontconfig adduser cpio findutils nano libpoco-dev libcap2-bin openssl inotify-tools procps libubsan0 libubsan1 openssh-client - # tdf#117557 - Add CJK Fonts to LibreOffice Online Docker Image -RUN apt-get -y install fonts-wqy-zenhei fonts-wqy-microhei fonts-droid-fallback fonts-noto-cjk +RUN apt-get update && \ + apt-get -y install locales-all libpng16-16 fontconfig adduser cpio \ + findutils nano libpoco-dev libcap2-bin openssl inotify-tools \ + procps libubsan0 libubsan1 openssh-client fonts-wqy-zenhei \ + fonts-wqy-microhei fonts-droid-fallback fonts-noto-cjk # copy freshly built LibreOffice master and LibreOffice Online master with latest translations COPY /instdir / @@ -24,18 +24,18 @@ COPY /instdir / COPY /scripts/run-lool.sh / # set up LibreOffice Online (normally done by postinstall script of package) -RUN setcap cap_fowner,cap_mknod,cap_sys_chroot=ep /usr/bin/loolforkit -RUN adduser --quiet --system --group --home /opt/lool lool -RUN mkdir -p /var/cache/loolwsd && chown lool: /var/cache/loolwsd -RUN rm -rf /var/cache/loolwsd/* -RUN rm -rf /opt/lool -RUN mkdir -p /opt/lool/child-roots -RUN loolwsd-systemplate-setup /opt/lool/systemplate /opt/libreoffice >/dev/null 2>&1 -RUN touch /var/log/loolwsd.log # Fix permissions -RUN chown lool:lool /var/log/loolwsd.log -RUN chown -R lool:lool /opt/ -RUN chown -R lool:lool /etc/loolwsd +RUN setcap cap_fowner,cap_mknod,cap_sys_chroot=ep /usr/bin/loolforkit && \ + adduser --quiet --system --group --home /opt/lool lool && \ + mkdir -p /var/cache/loolwsd && chown lool: /var/cache/loolwsd && \ + rm -rf /var/cache/loolwsd/* && \ + rm -rf /opt/lool && \ + mkdir -p /opt/lool/child-roots && \ + loolwsd-systemplate-setup /opt/lool/systemplate /opt/libreoffice >/dev/null 2>&1 && \ + touch /var/log/loolwsd.log && \ + chown lool:lool /var/log/loolwsd.log && \ + chown -R lool:lool /opt/ && \ + chown -R lool:lool /etc/loolwsd EXPOSE 9980 @@ -43,4 +43,3 @@ EXPOSE 9980 USER 101 CMD bash /run-lool.sh - diff --git a/docker/Ubuntu b/docker/Ubuntu index 070826bf12..d0685b2464 100644 --- a/docker/Ubuntu +++ b/docker/Ubuntu @@ -7,15 +7,18 @@ FROM ubuntu:18.04 # refresh repos otherwise installations later may fail -RUN apt-get update - # install LibreOffice run-time dependencies # install adduser, findutils, openssl and cpio that we need later # install an editor -RUN apt-get -y install locales-all libpng16-16 fontconfig adduser cpio findutils nano libpocoxml50 libpocoutil50 libpoconetssl50 libpoconet50 libpocojson50 libpocofoundation50 libpococrypto50 libcap2-bin openssl openssh-client inotify-tools procps libxcb-shm0 libxcb-render0 libxrender1 libxext6 - # tdf#117557 - Add CJK Fonts to LibreOffice Online Docker Image -RUN apt-get -y install fonts-wqy-zenhei fonts-wqy-microhei fonts-droid-fallback fonts-noto-cjk +RUN apt-get update && \ + apt-get -y install locales-all libpng16-16 fontconfig adduser cpio \ + findutils nano libpocoxml50 libpocoutil50 libpoconetssl50 \ + libpoconet50 libpocojson50 libpocofoundation50 libpococrypto50 \ + libcap2-bin openssl openssh-client inotify-tools procps \ + libxcb-shm0 libxcb-render0 libxrender1 libxext6 \ + fonts-wqy-zenhei fonts-wqy-microhei fonts-droid-fallback \ + fonts-noto-cjk # copy freshly built LibreOffice master and LibreOffice Online master with latest translations COPY /instdir / @@ -24,18 +27,18 @@ COPY /instdir / COPY /scripts/run-lool.sh / # set up LibreOffice Online (normally done by postinstall script of package) -RUN setcap cap_fowner,cap_mknod,cap_sys_chroot=ep /usr/bin/loolforkit -RUN adduser --quiet --system --group --home /opt/lool lool -RUN mkdir -p /var/cache/loolwsd && chown lool: /var/cache/loolwsd -RUN rm -rf /var/cache/loolwsd/* -RUN rm -rf /opt/lool -RUN mkdir -p /opt/lool/child-roots -RUN loolwsd-systemplate-setup /opt/lool/systemplate /opt/libreoffice >/dev/null 2>&1 -RUN touch /var/log/loolwsd.log # Fix permissions -RUN chown lool:lool /var/log/loolwsd.log -RUN chown -R lool:lool /opt/ -RUN chown -R lool:lool /etc/loolwsd +RUN setcap cap_fowner,cap_mknod,cap_sys_chroot=ep /usr/bin/loolforkit && \ + adduser --quiet --system --group --home /opt/lool lool && \ + mkdir -p /var/cache/loolwsd && chown lool: /var/cache/loolwsd && \ + rm -rf /var/cache/loolwsd/* && \ + rm -rf /opt/lool && \ + mkdir -p /opt/lool/child-roots && \ + loolwsd-systemplate-setup /opt/lool/systemplate /opt/libreoffice >/dev/null 2>&1 && \ + touch /var/log/loolwsd.log && \ + chown lool:lool /var/log/loolwsd.log && \ + chown -R lool:lool /opt/ && \ + chown -R lool:lool /etc/loolwsd EXPOSE 9980