반응형

docker RUN apt install 명령 시 executor failed running 오류 발생

 

executor failed running [/bin/sh -c apt install net-tools sysstat nano iputils-ping -y]: exit code: 100 오류

 

docker build -t py38agent-build-machine -f D:\data\build38.dockerfile .

위 도커 명령을 내렸는데 executor failed running [/bin/sh -c apt install net-tools sysstat nano iputils-ping -y]: exit code: 100 오류가 발생한다면 명령에 캐시 사용하지 않도록 옵션을 지정하여 시도해 봅니다.

 

docker build --no-cache=true -t py38agent-build-machine -f D:\data\build38.dockerfile .

 

또는 apt-get 명령을 사용합니다.

 

 

자세한 내용은 아래 블로그 링크 내용을 참고하세요.

 

반응형

+ Recent posts