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