2017-06-27 17:09:57 +02:00
|
|
|
FROM registry.yaltik.net/golem:yaltikstable
|
2017-06-05 08:23:45 +02:00
|
|
|
MAINTAINER Yaltik - Fabien Bourgeois <fabien@yaltik.com>
|
|
|
|
|
2018-03-11 13:37:58 +01:00
|
|
|
# PostgreSQL CLI
|
2020-04-04 12:33:20 +02:00
|
|
|
# Mandatory for pyhton2
|
2020-05-08 15:27:42 +02:00
|
|
|
# RUN pip install --user pgcli==2.2.0 --only-binary psycopg2
|
|
|
|
# COPY pgcli.sh ./
|
2018-03-11 13:37:58 +01:00
|
|
|
# Odoo specific
|
2017-06-05 08:23:45 +02:00
|
|
|
RUN pip install --user watchdog
|
2021-02-23 11:39:22 +01:00
|
|
|
RUN pip install --user ipython
|
|
|
|
RUN mkdir -p /opt/odoo/.ipython/profile_default
|
|
|
|
COPY ipython_config.py ./.ipython/profile_default/
|
|
|
|
COPY shell_helpers.py ./
|
|
|
|
COPY shell10.sh ./shell.sh
|
2018-06-01 08:12:55 +02:00
|
|
|
COPY i18n.sh ./
|
2017-06-05 08:23:45 +02:00
|
|
|
COPY launch10.dev.sh ./launch10.sh
|
|
|
|
ENV DEV 1
|