docker/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit 567cd458a1fa5e341d759d98033eef2a57942176 Author: Samuel Mehrbrodt <[email protected]> AuthorDate: Fri Nov 16 11:18:29 2018 +0100 Commit: Samuel Mehrbrodt <[email protected]> CommitDate: Tue Nov 20 12:29:08 2018 +0100 Docker: Install an editor So that one can edit files in the docker container Change-Id: Ibfc9b624e2ae2ea417f87225d6d8d4212c6b1fb3 Reviewed-on: https://gerrit.libreoffice.org/63464 Reviewed-by: Samuel Mehrbrodt <[email protected]> Tested-by: Samuel Mehrbrodt <[email protected]> diff --git a/docker/Dockerfile b/docker/Dockerfile index ec8150117..c4c1423e0 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -12,7 +12,8 @@ RUN apt-get update && apt-get upgrade -y # install LibreOffice run-time dependencies # install apt-transport-https in order to set up repo for Poco # install adduser, findutils and cpio that we need later -RUN apt-get -y install apt-transport-https locales-all libpng12-0 libxinerama1 libgl1-mesa-glx libfontconfig1 libfreetype6 libxrender1 libxcb-shm0 libxcb-render0 adduser cpio findutils +# install an editor +RUN apt-get -y install apt-transport-https locales-all libpng12-0 libxinerama1 libgl1-mesa-glx libfontconfig1 libfreetype6 libxrender1 libxcb-shm0 libxcb-render0 adduser cpio findutils nano # set up 3rd party repo of Poco, dependency of loolwsd RUN echo "deb https://collaboraoffice.com/repos/Poco/ /" >> /etc/apt/sources.list.d/poco.list _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
