http://www.open3d.org/docs/release/docker.html#install-and-run-open3d-apps-in-docker
# This could also be another Ubuntu or Debian based distribution
FROM ubuntu:latest
# Install Open3D system dependencies and pip
RUN apt-get update && apt-get install --no-install-recommends -y \
libgl1 \
libgomp1 \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
# Install Open3D from the PyPI repositories
RUN python3 -m pip install --no-cache-dir --upgrade pip && \
python3 -m pip install --no-cache-dir --upgrade open3d
'Docker' 카테고리의 다른 글
[Docker] Tensorflow GPU 사용하기 (0) | 2023.06.02 |
---|---|
[Docker] 도커 객체 한번에 제거 (0) | 2023.05.04 |
완성된 Docker Push 하는 방법 (0) | 2023.03.14 |
OpenCV 오류 (0) | 2023.03.14 |
Docker volume 할당하여 실행 (0) | 2023.03.13 |