Odoo_17.0_community/Dockerfile
gitea_admin da39daf641
Some checks failed
ci / main (push) Failing after 1m14s
Update Dockerfile
2024-10-25 10:31:10 +00:00

12 lines
232 B
Docker

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