From 36e441901614e0afdb8096c137f32de171d1c6e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20V=C3=A9ril?= Date: Wed, 6 Nov 2019 15:22:25 +0100 Subject: [PATCH] enable manpage and add lsb_release to Dockerfile.compile --- Dockerfile.compile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile.compile b/Dockerfile.compile index a378cc9..5aecbc4 100644 --- a/Dockerfile.compile +++ b/Dockerfile.compile @@ -17,6 +17,8 @@ ARG user=user # This argument define timezone for tzdata requierd by qp_run ARG tz=Etc/UTC # We could add another argument to configure the language of the image +# enable manpages installation +RUN sed -i 's,^path-exclude=/usr/share/man/,#path-exclude=/usr/share/man/,' /etc/dpkg/dpkg.cfg.d/excludes # Install all requierd packages RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install apt-utils -y RUN DEBIAN_FRONTEND=noninteractive apt-get install \ @@ -25,7 +27,7 @@ git \ # All necessary packages to compile and run quantum package curl wget python gfortran gcc g++ build-essential unzip liblapack-dev pkg-config autoconf zlib1g zlib1g-dev tzdata libgmp-dev \ # Other packages for user usage -htop vim emacs screen tmux less man -y +htop vim emacs screen tmux less man manpages-posix lsb-release -y # Reconfigure tzdata with the good timezone RUN echo $tz > /etc/timezone RUN rm -rf /etc/localtime