Odoo_17.0_community/Dockerfile
gitea_admin 4cb649197b
Some checks failed
ci / main (push) Failing after 1m25s
Update Dockerfile
2024-10-25 10:37:17 +00:00

18 lines
312 B
Docker

FROM odoo:17.0
# Install deps
RUN pip install mygeotab
# Copy tests directory into the image
COPY tests/ /tests/
# Switch to root to set permissions
USER root
# Set execute permissions and ownership
RUN chmod +x /tests/runtests.sh \
&& chown -R odoo:odoo /tests
# Switch back to the odoo user
USER odoo