dockerfile - docker exec로 container에 접속 시 자동으로 실행되는 코드 적용
예를 들어, dockerfile에 특정 도구를 설치하는 명령어를 수행한다고 가정해 보겠습니다.
RUN dotnet tool install -g dotnet-dump
위의 도구는 ~/.dotnet/tools 디렉터리에 위치하게 되는데요, 그런 경우 매번 docker exec로 접속했을 때 해당 디렉터리로 연결하는 명령어를 수행해야 합니다.
// docker exec -it ... /bin/bash
export PATH=$PATH:/root/.dotnet/tools
영~~~ 귀찮은 일인데요, 그래서 위의 코드를 자동으로 수행하도록 다음과 같은 코드를 넣어보면 어떨까요?
RUN echo "export PATH=$PATH:/root/.dotnet/tools" >> ~/.bash_profile # 또는 ~/.profile
SHELL ["/bin/bash", "-c"] # https://github.com/moby/moby/issues/30066#issuecomment-272112745
RUN source ~/.bash_profile
해보면 아시겠지만, 위와 같이 구성한 docker image로 컨테이너를 실행해 접속하면 dotnet-dump가 실행되지 않습니다. 물론, PATH 환경 변수에 걸려 있지 않기 때문인데요, 혹시나 싶어 .bashrc로 했더니,
RUN dotnet tool install -g dotnet-dump
RUN echo "export PATH=$PATH:/root/.dotnet/tools" >> ~/.bashrc
# 자주 실행할 명령어 또는 초기 환경을 "~/.bashrc" 파일에 등록
# https://www.sysnet.pe.kr/2/0/12077
잘 동작합니다. ^^
검색해 보면, 그 둘 간의 차이가,
What is the difference between .bash_profile and .bashrc?
; https://apple.stackexchange.com/questions/51036/what-is-the-difference-between-bash-profile-and-bashrc
bash_profile은 login shell에서 실행되고, bashrc는 interactive non-login shells에서 실행된다고 합니다. 그러니까, docker exec의 경우 "interactive non-login shells"이 되는 듯합니다.
[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]