안녕하세요. 글쓰는 개발자 입니다. 최근 기존 제품의 MSA 화 및 재 개발을 위해 설계를 마치고 그 중 Machine Learning 을 담당하는 Server 를 구축하던 중 발생한 Error 와 해결 과정을 간단히 소개하겠습니다. 요약 1. 에러 : FastAPI Server 를 Container로 띄우는 과정에서 발생 psycopg2.OperationalError: SCRAM authentication requires libpq version 10 or above 2. 원인 : m1 based macOS Computer 에서 발생하는 'libpg' error 3. 해결 방법 : Dockerfile 최상단 FROM 영역 '--platform=linux/amd64' 추가 # pull official b..