-
Notifications
You must be signed in to change notification settings - Fork 894
Expand file tree
/
Copy pathDockerfile.ubuntu20
More file actions
48 lines (41 loc) · 1.01 KB
/
Dockerfile.ubuntu20
File metadata and controls
48 lines (41 loc) · 1.01 KB
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
46
47
48
FROM ubuntu:20.04
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y \
build-essential \
cmake \
git \
libeigen3-dev \
libopencv-dev \
libceres-dev \
python3-dev \
python3-numpy \
python3-opencv \
python3-pip \
python3-pyproj \
python3-scipy \
python3-yaml \
curl \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN pip3 install \
cloudpickle==0.4.0 \
ExifRead==2.1.2 \
Flask==2.3.2 \
fpdf2==2.4.6 \
joblib==0.14.1 \
matplotlib==3.7.5 \
networkx==2.5 \
numpy==1.24.4 \
opencv-python==4.12.0.88 \
pillow==10.4.0 \
pyproj==2.5.0 \
pytest==3.0.7 \
python-dateutil==2.9.0.post0 \
PyYAML==6.0.3 \
scipy==1.10.1 \
Sphinx==4.2.0 \
xmltodict==0.10.2
COPY . /source/OpenSfM
WORKDIR /source/OpenSfM
RUN python3 setup.py build