From 465a5f3e3172a0381e5cf838c00bc73e2a334266 Mon Sep 17 00:00:00 2001 From: Juan Jose Scarafia Date: Mon, 29 Jun 2015 16:25:25 -0300 Subject: [PATCH] IMP intento arreglo locale --- 8.0/Dockerfile | 2 +- README.md | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/8.0/Dockerfile b/8.0/Dockerfile index 71570a0..908c499 100644 --- a/8.0/Dockerfile +++ b/8.0/Dockerfile @@ -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 \ diff --git a/README.md b/README.md index 6799328..1905a0f 100644 --- a/README.md +++ b/README.md @@ -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 ======