https://stackoverflow.com/questions/55313610/importerror-libgl-so-1-cannot-open-shared-object-file-no-such-file-or-directo 참고
pip install open-cv2 명령 실행 시 의존성 있는 패키지들이 명시되어 있지 않아 설치가 되지 않는 문제
cv2 라이브러리의 의존성 패키지를 설치하는 명령어를 Dockerfile 에 추가해준다. RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y