2018-02-05 11:05:07 +01:00
|
|
|
FROM registry.yaltik.net/golem:yaltikmaster
|
2022-02-28 20:19:10 +01:00
|
|
|
LABEL maintainer="Yaltik - Fabien Bourgeois <fabien@yaltik.com>"
|
2018-02-05 11:05:07 +01:00
|
|
|
|
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
|
2022-02-28 20:19:10 +01:00
|
|
|
RUN pip install --user --no-cache-dir watchdog==0.10.7 ipython==5.10.0 && \
|
|
|
|
mkdir -p /opt/odoo/.ipython/profile_default
|
|
|
|
COPY ipython_config.py /opt/odoo/.ipython/profile_default/
|
|
|
|
COPY shell_helpers.py /opt/odoo/
|
|
|
|
COPY shell10.sh /opt/odoo/shell.sh
|
|
|
|
COPY i18n.sh /opt/odoo/
|
|
|
|
COPY launch10.dev.sh /opt/odoo/launch10.sh
|
2018-02-05 11:05:07 +01:00
|
|
|
ENV DEV 1
|