From 1fcf5423eeb449d214ae5025dfe64b3e5f29cd6f Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Thu, 24 Oct 2024 13:47:34 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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