Skip to content

Commit

Permalink
[FIX] Runtime dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
yajo committed Jan 31, 2017
1 parent 365d150 commit 1b4fe55
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
9 changes: 7 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,13 @@ ENV ODOO_RC=/opt/odoo/auto/odoo.conf \
RUN apt-get update \
&& apt-get -y upgrade \
&& apt-get install -y --no-install-recommends \
python-pip postgresql-client ruby-compass node-less git \
curl gettext-base \
# Odoo direct dependencies
python ruby-compass node-less \
# Odoo indirect dependencies
libxml2 libxslt1.1 libjpeg62-turbo zlib1g libfreetype6 liblcms2-2 \
libopenjpeg5 libtiff5 tk tcl libpq5 libldap-2.4-2 libsasl2-2 \
# This image's facilities
postgresql-client git curl gettext-base \
&& curl https://bootstrap.pypa.io/get-pip.py | python /dev/stdin --no-cache-dir \

# Special case for wkhtmltox
Expand Down
3 changes: 2 additions & 1 deletion bin/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ apt-get update
# lxml
apt_deps="$apt_deps libxml2-dev libxslt1-dev"
# Pillow
apt_deps="$apt_deps libjpeg-dev zlib1g-dev libfreetype6-dev liblcms2-dev libopenjpeg-dev libtiff-dev tk-dev tcl-dev"
apt_deps="$apt_deps libjpeg-dev zlib1g-dev libfreetype6-dev
liblcms2-dev libopenjpeg-dev libtiff5-dev tk-dev tcl-dev"
# psutil
apt_deps="$apt_deps linux-headers-amd64"
# psycopg2
Expand Down

0 comments on commit 1b4fe55

Please sign in to comment.