From da39daf641e0ab04c114f2f3bf18175ac6c518f9 Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Fri, 25 Oct 2024 10:31:10 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4db01b3..7ffcb5a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,11 @@ FROM odoo:17.0 -# Install some dependencies +# 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