* Update Dockerfile with performance dependency

As noted by John, requests improve by a factor 10 (20-30secs -> 2-3secs)
with this dependency in place.
This commit is contained in:
Erik Huelsmann 2017-08-04 23:39:18 +02:00
parent aa260dcec9
commit 1a56d1523d

View File

@ -5,6 +5,7 @@ RUN echo -n "APT::Install-Recommends \"0\";\nAPT::Install-Suggests \"0\";\n" >>
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
# Install Perl, Tex, Starman, psql client, and all dependencies # Install Perl, Tex, Starman, psql client, and all dependencies
# Without libclass-c3-xs-perl, performance is terribly slow...
RUN apt-get update && apt-get dist-upgrade -y && apt-get -y install \ RUN apt-get update && apt-get dist-upgrade -y && apt-get -y install \
libcgi-emulate-psgi-perl libcgi-simple-perl libconfig-inifiles-perl \ libcgi-emulate-psgi-perl libcgi-simple-perl libconfig-inifiles-perl \
libdbd-pg-perl libdbi-perl libdatetime-perl \ libdbd-pg-perl libdbi-perl libdatetime-perl \
@ -17,7 +18,7 @@ RUN apt-get update && apt-get dist-upgrade -y && apt-get -y install \
libpgobject-util-dbmethod-perl libplack-perl libtemplate-perl \ libpgobject-util-dbmethod-perl libplack-perl libtemplate-perl \
libnamespace-autoclean-perl \ libnamespace-autoclean-perl \
libtemplate-plugin-latex-perl libtex-encode-perl \ libtemplate-plugin-latex-perl libtex-encode-perl \
libmoosex-nonmoose-perl \ libmoosex-nonmoose-perl libclass-c3-xs-perl \
texlive-latex-recommended \ texlive-latex-recommended \
texlive-xetex \ texlive-xetex \
starman \ starman \