From cf59a0479bdf7bae69e2e098819302d4dc19a81a Mon Sep 17 00:00:00 2001 From: creylopez Date: Fri, 14 Feb 2025 11:40:33 +0000 Subject: [PATCH] el bashrc tiene que estar en /root --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6a27df9..d490560 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ 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 -RUN echo "export PAHT=/opt/venv/bin/:$PATH" >> /app/.bashrc +RUN echo "export PAHT=/opt/venv/bin/:$PATH" >> /root/.bashrc # make our entrypoint.sh executable RUN chmod +x config/entrypoint.sh