diff --git a/contrib/scripts/install/development.sh b/contrib/scripts/install/development.sh index a8c9497c46..6503f5ed35 100644 --- a/contrib/scripts/install/development.sh +++ b/contrib/scripts/install/development.sh @@ -18,7 +18,7 @@ sudo apt-get -qq update sudo apt-get -y upgrade echo -e "\n -> Installing core binaries \n" -sudo apt-get -y install git-core python-virtualenv gcc python-dev libjpeg-dev libpng-dev libtiff-dev tesseract-ocr poppler-utils libreoffice +sudo apt-get -y install exiftool git-core python-virtualenv gcc python-dev libjpeg-dev libpng-dev libtiff-dev tesseract-ocr poppler-utils libreoffice echo -e "\n -> Cloning development branch of repository \n" git clone /mayan-edms-repository/ $INSTALLATION_DIRECTORY diff --git a/contrib/scripts/install/production.sh b/contrib/scripts/install/production.sh index 0f3490cb63..f5b0de2b56 100644 --- a/contrib/scripts/install/production.sh +++ b/contrib/scripts/install/production.sh @@ -20,7 +20,7 @@ apt-get -qq update apt-get -y upgrade echo -e "\n -> Installing core binaries \n" -apt-get install nginx supervisor redis-server postgresql libpq-dev libjpeg-dev libmagic1 libpng-dev libreoffice libtiff-dev gcc ghostscript gpgv python-dev python-virtualenv tesseract-ocr poppler-utils -y +apt-get install exiftool nginx supervisor redis-server postgresql libpq-dev libjpeg-dev libmagic1 libpng-dev libreoffice libtiff-dev gcc ghostscript gpgv python-dev python-virtualenv tesseract-ocr poppler-utils -y echo -e "\n -> Setting up virtualenv \n" rm -f ${INSTALLATION_DIRECTORY} diff --git a/docker/Dockerfile b/docker/Dockerfile index 9448ab895e..b10f21fcd9 100755 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -21,6 +21,7 @@ RUN if [ "${APT_PROXY}" ]; then echo "Acquire::http { Proxy \"http://${APT_PROXY # Install base Ubuntu libraries RUN apt-get update && \ apt-get install -y --no-install-recommends \ + exiftool \ g++ \ gcc \ ghostscript \ diff --git a/docs/chapters/deploying.rst b/docs/chapters/deploying.rst index 512cc08a6d..c5b364e156 100644 --- a/docs/chapters/deploying.rst +++ b/docs/chapters/deploying.rst @@ -21,10 +21,10 @@ Binary dependencies If using a Debian_ or Ubuntu_ based Linux distribution, get the executable requirements using:: - sudo apt-get install g++ gcc ghostscript gnupg1 graphviz libfuse2 \ - libjpeg-dev libmagic1 libpq-dev libpng-dev libreoffice libtiff-dev \ - poppler-utils postgresql python-dev python-virtualenv redis-server \ - sane-utils supervisor tesseract-ocr zlib1g-dev -y + sudo apt-get install exiftool g++ gcc ghostscript gnupg1 graphviz \ + libfuse2 libjpeg-dev libmagic1 libpq-dev libpng-dev libreoffice \ + libtiff-dev poppler-utils postgresql python-dev python-virtualenv \ + redis-server sane-utils supervisor tesseract-ocr zlib1g-dev -y Create an user account for the installation: -------------------------------------------- @@ -182,10 +182,11 @@ Binary dependencies If using a Debian_ or Ubuntu_ based Linux distribution, get the executable requirements using:: - sudo apt-get install g++ gcc ghostscript gnupg1 graphviz libfuse2 \ - libjpeg-dev libmagic1 libpq-dev libpng-dev libreoffice libtiff-dev \ - poppler-utils postgresql python-dev python-virtualenv rabbitmq-server \ - redis-server sane-utils supervisor tesseract-ocr zlib1g-dev -y + sudo apt-get install exiftool g++ gcc ghostscript gnupg1 graphviz \ + libfuse2 libjpeg-dev libmagic1 libpq-dev libpng-dev libreoffice \ + libtiff-dev poppler-utils postgresql python-dev python-virtualenv \ + rabbitmq-server redis-server sane-utils supervisor tesseract-ocr \ + zlib1g-dev -y Create an user account for the installation: --------------------------------------------