42seoul/42seoul_

dockerfile 과정 에러 [apt-get update 관련] E: Unable to fetch some archives maybe run apt-get update

mcdn 2022. 7. 4. 17:26
반응형

Dockerfile 에러 Unable to fetch~~ returned non-zero code:100

E: Failed to fetch http://deb.debian.org 

E: Unable to fetch some archives maybe run apt-get update or try with --fix -missing? 

The command /bin/sh -c apt-get update -y && apt-get upgrade -y && apt-get -y install ~~ returned a non-zero code:100 

 

Error 내용은 위와 같다. 

 

 

 

해결방법

-y 옵션 위치가 중요했다. -y 옵션 순서를 잘못 써서 생긴 문제였다. 

 

apt-get update -y => apt-get -y update 

apt-get upgrade -y => apt-get -y upgrade 

 

로 고치니까 해결되었다.

설치가 끝까지 되면 성공!

반응형