IMP intento arreglo locale

This commit is contained in:
Juan Jose Scarafia 2015-06-29 16:25:25 -03:00
parent 10f7cc0072
commit 465a5f3e31
2 changed files with 8 additions and 1 deletions

View File

@ -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
======