실행환경 : Ubuntu 22.04.LTS 1. 우분투 시스템 패키지 업데이트 sudo apt-get update 2. 의존성 패키지 설치(도커를 설치하기 위해 필요한 의존성 패키지들을 설치함)sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common각 패키지 역할-> apt-transport-https: https를 통해 apt 패키지를 가져오는 것을 가능하게 함 -> ca-certificates 인증서 관리-> curl 파일 다운로드할 때 사용-> gnupg-agent GPG 키 관리를 지원 -> software-properties-common 추가적인 소프트웨어 소스 관..