From 2be0178ac32a1fb125bbd99ec4e0bec4bda67103 Mon Sep 17 00:00:00 2001 From: creylopez Date: Fri, 14 Feb 2025 12:37:54 +0000 Subject: [PATCH] =?UTF-8?q?A=C3=B1ade=20path=20a=20.bashrc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9d74955..3cf47e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,6 +27,10 @@ RUN python -m venv /opt/venv && \ /opt/venv/bin/python -m pip install pip --upgrade && \ /opt/venv/bin/python -m pip install -r requirements.txt +# AƱade path a .bashrc + +RUN echo "export PATH=/opt/venv/bin/:$PATH" >> /root/.bashrc + # make our entrypoint.sh executable RUN chmod +x config/entrypoint.sh