docker 이미지에서 opencv-python 실행 시킬때 ImportError: libGL.so.1: cannot open shared object file: No such file or directory 오류가 난다면 Dockerfile에서 RUN apt-get update RUN apt-get -y install libgl1-mesa-glx 위에 두줄을 추가하고 build 후 재실행 해보면 됩니다.
ImportError: libGL.so.1: cannot open shared object file: No such file or directory
docker 이미지에서 opencv-python 실행 시킬때 ImportError: libGL.so.1: cannot open shared object file: No such file or directory 오류가 난다면 Dockerfile에서 RUN apt-get update RUN apt-get -y install libgl1-mesa-glx 위에 두줄을 추가하고 build 후 재실행 해보면 됩니다.
2023.12.14