18 lines
514 B
Docker
18 lines
514 B
Docker
FROM registry.yaltik.net/golem:yaltikstable
|
|
MAINTAINER Yaltik - Fabien Bourgeois <fabien@yaltik.com>
|
|
|
|
# PostgreSQL CLI
|
|
# Mandatory for pyhton2
|
|
# RUN pip install --user pgcli==2.2.0 --only-binary psycopg2
|
|
# COPY pgcli.sh ./
|
|
# Odoo specific
|
|
RUN pip install --user watchdog
|
|
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
|
|
COPY i18n.sh ./
|
|
COPY launch10.dev.sh ./launch10.sh
|
|
ENV DEV 1
|