14 lines
489 B
Docker
14 lines
489 B
Docker
FROM registry.yaltik.net/odoo:yaltik12
|
|
LABEL maintainer="Yaltik - Fabien Bourgeois <fabien@yaltik.com>"
|
|
|
|
# PostgreSQL CLI
|
|
# RUN .local/bin/pip3 install --user pgcli
|
|
# COPY pgcli.sh ./
|
|
# Odoo specific
|
|
# Gevent : last py 3.5, fixe local dev problem with CPU 100% on Fedora (kernel problem ?)
|
|
RUN .local/bin/pip3 install --user --no-cache-dir watchdog==0.10.7 gevent==20.9.0
|
|
COPY shell12.sh /opt/odoo/shell.sh
|
|
COPY i18n.sh /opt/odoo/i18n.sh
|
|
COPY launch12.dev.sh /opt/odoo/launch.sh
|
|
ENV DEV 1
|