From de68c797305fb16b5b720ab15e23376a52ded923 Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Fri, 25 Oct 2024 11:02:59 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a14f953..a327868 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,12 @@ FROM odoo:17.0 # Switch to root to install packages USER root -# Update package list and install python3-venv +# Update package list and install necessary packages RUN apt-get update && apt-get install -y python3-venv +# Create symlink from python3 to python +RUN ln -s /usr/bin/python3 /usr/bin/python + # Install some dependencies RUN pip install mygeotab