diff --git a/Dockerfile b/Dockerfile index 983160f..8cafc1f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,10 @@ FROM odoo:17.0 -# Install some deps, lessc and less-plugin-clean-css, and wkhtmltopdf - +# Install some dependencies RUN pip install mygeotab + +# Copy the tests directory into the image +COPY tests/ /tests/ + +# Ensure the test script is executable +RUN chmod +x /tests/runtests.sh