summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorMarco Marinello <marinello@libreoffice.org>2020-05-15 10:01:38 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2020-05-20 08:35:03 +0200
commit16f72821bd7872497d132bd27a272218c753e0b6 (patch)
treef97e3db1b08939d46b3fc9f516ff6d9e5d218b54 /docker
parentRevert "cypress: this test seems to be stable now." (diff)
downloadonline-16f72821bd7872497d132bd27a272218c753e0b6.tar.gz
online-16f72821bd7872497d132bd27a272218c753e0b6.zip
Enhance docker build system: reduce created layers
Signed-off-by: Marco Marinello <marinello@libreoffice.org> Change-Id: If12a84b3adb82dad3bf7ef7ea423e8bdfac1650e Reviewed-on: https://gerrit.libreoffice.org/c/online/+/94261 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'docker')
-rw-r--r--docker/Debian33
-rw-r--r--docker/Ubuntu35
2 files changed, 35 insertions, 33 deletions
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