10 lines
288 B
Docker
10 lines
288 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
|
|
# Uncomment if target version is higher than 15
|
|
# RUN export OPENUPGRADE_TARGET_VERSION=17.0
|
|
USER odoo |