소스 검색

el bashrc tiene que estar en /root

creylopez 1 년 전
부모
커밋
cf59a0479b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Dockerfile

+ 1 - 1
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