9 lines
238 B
Docker
9 lines
238 B
Docker
FROM odoo:15.0
|
|
|
|
USER root
|
|
RUN apt update
|
|
RUN apt install -y git
|
|
RUN pip3 install --ignore-installed git+https://github.com/OCA/openupgradelib.git@master
|
|
RUN pip3 install lxml_html_clean
|
|
RUN export OPENUPGRADE_TARGET_VERSION=16.0
|
|
USER odoo |