[IMP] Odoo 11.0-13.0: avoid to install unnecessary packages

This commit is contained in:
Christophe Monniez 2020-04-17 14:12:06 +02:00
parent 3e06fdf97d
commit 91a9019df7
3 changed files with 4 additions and 4 deletions

View File

@ -46,7 +46,7 @@ RUN echo 'deb http://apt.postgresql.org/pub/repos/apt/ stretch-pgdg main' > /etc
&& gpgconf --kill all \
&& rm -rf "$GNUPGHOME" \
&& apt-get update \
&& apt-get install -y postgresql-client \
&& apt-get install --no-install-recommends -y postgresql-client \
&& rm -rf /var/lib/apt/lists/*
# Install Odoo

View File

@ -46,7 +46,7 @@ RUN echo 'deb http://apt.postgresql.org/pub/repos/apt/ stretch-pgdg main' > /etc
&& gpgconf --kill all \
&& rm -rf "$GNUPGHOME" \
&& apt-get update \
&& apt-get install -y postgresql-client \
&& apt-get install --no-install-recommends -y postgresql-client \
&& rm -rf /var/lib/apt/lists/*
# Install rtlcss (on Debian stretch)
@ -58,7 +58,7 @@ RUN echo "deb http://deb.nodesource.com/node_8.x stretch main" > /etc/apt/source
&& gpgconf --kill all \
&& rm -rf "$GNUPGHOME" \
&& apt-get update \
&& apt-get install -y nodejs \
&& apt-get install --no-install-recommends -y nodejs \
&& npm install -g rtlcss \
&& rm -rf /var/lib/apt/lists/*

View File

@ -44,7 +44,7 @@ RUN echo 'deb http://apt.postgresql.org/pub/repos/apt/ buster-pgdg main' > /etc/
&& gpgconf --kill all \
&& rm -rf "$GNUPGHOME" \
&& apt-get update \
&& apt-get install -y postgresql-client \
&& apt-get install --no-install-recommends -y postgresql-client \
&& rm -rf /var/lib/apt/lists/*
# Install rtlcss (on Debian buster)