forked from dusty-nv/jetson-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
46 lines (40 loc) · 869 Bytes
/
Dockerfile
File metadata and controls
46 lines (40 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#---
# name: pymeshlab
# group: nerf
# config: config.py
# depends: [python, cmake, ninja, numpy, polyscope]
# requires: '>=34.1.0'
# notes: https://github.com/cnr-isti-vclab/PyMeshLab.git
#---
ARG BASE_IMAGE
FROM ${BASE_IMAGE}
ARG PYMESHLAB_VERSION \
FORCE_BUILD=off
RUN apt-get update && \
apt-get install -y --no-install-recommends \
build-essential \
fontconfig \
fuse \
gdb \
git \
kmod \
libboost-dev \
libdbus-1-3 \
libegl-dev \
libfuse2 \
libgmp-dev \
libglu1-mesa-dev \
libmpfr-dev \
libpulse-mainloop-glib0 \
libtbb-dev \
libxerces-c-dev \
patchelf \
qtbase5-dev \
qt5-qmake \
rsync \
unzip \
wget \
libqt5opengl5-dev \
&& rm -rf /var/lib/apt/lists/*
COPY build.sh install.sh /tmp/PYMESHLAB/
RUN /tmp/PYMESHLAB/install.sh || /tmp/PYMESHLAB/build.sh