도커 실행 일지
apt update
apt install curl
apt install nodejs
apt install npm
npm cache clean --force
npm install -g n
n stable
npm install -g npm
apt update
apt install curl
apt-get install build-essential libssl-dev
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
source ~/.bashrc
nvm install 16
nvm use 16
npm err! tracker "idealtree" already exists
도커로 node 개발 환경을 구축하다가 오류가 발생
npm install 시 이미 관련 파일이 존재하는 이유로 발생함
dockerfile에서는 WORKDIR 옵션을 주어 새로운 디렉터리에서 npm install 을 동작시켜야하고
docker 컨테이너 접속한 상태에서는, 경로를 /usr/app 으로 이동하해서 수행하면 됨.
[참고]
https://stackoverflow.com/questions/57534295/npm-err-tracker-idealtree-already-exists-while-creating-the-docker-image-for
댓글 없음:
댓글 쓰기