This commit is contained in:
Juan José Scarafía 2015-07-21 12:39:55 +00:00
commit 66ff2e8a10
2 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,5 @@
FROM debian:jessie
MAINTAINER Odoo S.A. <info@odoo.com>
MAINTAINER Juan Jose Scarafia <jjs@adhoc.com.ar>
# Install some deps, lessc and less-plugin-clean-css, and wkhtmltopdf
RUN set -x; \
@ -22,7 +22,7 @@ RUN set -x; \
# Install Odoo
ENV ODOO_VERSION 8.0
ENV ODOO_RELEASE 20150401
ENV ODOO_RELEASE 20150629
RUN set -x; \
curl -o odoo.deb -SL http://nightly.odoo.com/${ODOO_VERSION}/nightly/deb/odoo_${ODOO_VERSION}.${ODOO_RELEASE}_all.deb \
&& dpkg --force-depends -i odoo.deb \

View File

@ -1,3 +1,10 @@
About this fork
======
This is a fork of odoo docker official image. We make the fork for two reasons till now:
* We want to use more recent nighty odoo builds and officla repository is updated only after some months
* On default odoo, as there are no locales, when creating a new database and loading language (for eg. es_ar), no correct language info is loaded (for eg date format). So we add a modification to install es_AR locale and some others. We could make this modification on our adhoc odoo container modificacion because we can' achieve to install a newlocale on jessie, so we change linux distribution to ubuntu 14:04 and then add "locale-gen es_AR.UTF-8" to install locales
About this Repo
======