* Minimize the size of the image (went from 2.6GB to 1.4GB!)

This commit is contained in:
Erik Huelsmann 2017-05-25 15:12:09 +02:00
parent a53dd55ecf
commit 4da73006fa

View File

@ -1,6 +1,9 @@
FROM perl:5 FROM perl:5
MAINTAINER Freelock john@freelock.com MAINTAINER Freelock john@freelock.com
RUN echo -n "APT::Install-Recommends \"0\";\nAPT::Install-Suggests \"0\";\n" >> /etc/apt/apt.conf
# Install Perl, Tex, Starman, psql client, and all dependencies # Install Perl, Tex, Starman, psql client, and all dependencies
RUN DEBIAN_FRONTENT=noninteractive && \ RUN DEBIAN_FRONTENT=noninteractive && \
apt-get update && apt-get -y install \ apt-get update && apt-get -y install \
@ -27,7 +30,6 @@ RUN DEBIAN_FRONTENT=noninteractive && \
# Java & Nodejs for doing Dojo build # Java & Nodejs for doing Dojo build
#RUN DEBIAN_FRONTENT=noninteractive && apt-get install -y openjdk-7-jre-headless #RUN DEBIAN_FRONTENT=noninteractive && apt-get install -y openjdk-7-jre-headless
RUN apt-get install -y npm RUN apt-get install -y npm
RUN npm install uglify-js@">=2.0 <3.0"
RUN update-alternatives --install /usr/bin/node nodejs /usr/bin/nodejs 100 RUN update-alternatives --install /usr/bin/node nodejs /usr/bin/nodejs 100
# Build time variables # Build time variables
@ -40,13 +42,17 @@ RUN cd /srv && \
WORKDIR /srv/ledgersmb WORKDIR /srv/ledgersmb
# 1.5 requirements # master requirements
RUN cpanm --quiet --notest \ RUN cpanm --quiet --notest \
--with-feature=starman \ --with-feature=starman \
--with-feature=latex-pdf-ps \ --with-feature=latex-pdf-ps \
--with-feature=openoffice \ --with-feature=openoffice \
--installdeps . --installdeps .
# Uglify needs to be installed right before 'make dojo'?!
RUN npm install -g uglify-js@">=2.0 <3.0"
ENV NODE_PATH /usr/local/lib/node_modules
# Build dojo # Build dojo
RUN make dojo RUN make dojo