diff --git a/Dockerfile b/Dockerfile index cf851eb..fc22584 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,9 +44,13 @@ ENV HOME=/home/${USERNAME} USER ${USERNAME} -RUN python3 -m venv $HOME/py \ - && $HOME/py/bin/pip install pyright \ - && echo "export PATH=\"$HOME/py/bin:$PATH\"" >> $HOME/.bashrc +RUN python3 -m venv $HOME/py + +ENV PATH="$HOME/.local/bin:$HOME/py/bin:$PATH" + +RUN pip install pyright aider-install + +RUN $HOME/py/bin/aider-install ENV NVM_DIR=${HOME}/.nvm