beyond-sw-camp / be01-101

Beyond SW camp first player 101
17 stars 2 forks source link

Dockerfile build시 apt update 속도 저하 문제 #45

Closed papercrane55123 closed 9 months ago

papercrane55123 commented 9 months ago

Dockerfile build할 때 아래 이미지와 같이 속도가 느려 작업할 수 없는 상황입니다. image

아래 명령어를 사용해 build cache도 없애보고(https://blog.naver.com/mini_crane_/223357506236 참고)

$ sudo docker builder prune

국가별 미러 서버 사용하기 위해 /etc/apt/sources.list 파일 내의 모든 주소를 한국 미러 주소로 바꿔봤는데 결과는 동일합니다. image

혹시나 설정 적용의 문제인가 싶어서 source 명령어도 사용해봤는데 동일합니다.

$ source /etc/apt/sources.list
/etc/apt/sources.list:3: command not found: deb
/etc/apt/sources.list:8: command not found: deb
/etc/apt/sources.list:14: command not found: deb
/etc/apt/sources.list:16: command not found: deb
/etc/apt/sources.list:24: command not found: deb
/etc/apt/sources.list:26: command not found: deb
/etc/apt/sources.list:34: command not found: deb
/etc/apt/sources.list:37: command not found: deb
/etc/apt/sources.list:39: command not found: deb
/etc/apt/sources.list:41: command not found: deb

결과적으로 설치 시간 10분 걸렸습니다.

다른 방법이 있을까요? 감사합니다.

papercrane55123 commented 9 months ago

변경 사항 적용이 잘못되어 있었습니다.

$ source /etc/apt/sources.list (x)
$ sudo apt update (o)

위와 같이 적용하면 속도 문제 해결 된다고 합니다.