forked from ifcquery/ifcplusplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
27 lines (25 loc) · 951 Bytes
/
Dockerfile
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
FROM ubuntu:18.04
RUN apt-get update && \
apt-get install -y software-properties-common cmake libboost-dev && \
add-apt-repository ppa:ubuntu-toolchain-r/test && \
apt-get install -y g++-8 && \
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 60 --slave /usr/bin/g++ g++ /usr/bin/g++-8
RUN apt-get install -y \
cmake \
qt5-qmake \
libqt5widgets5 \
libqt5opengl5-dev \
qttools5-dev \
qtbase5-dev \
libxrandr-dev \
libtiff5-dev \
libpoppler-glib-dev \
librsvg2-dev \
libcairo2-dev \
libcurl4-gnutls-dev \
libgtkglext1-dev \
libgdal-dev \
libsdl1.2-dev \
libgstreamer1.0-dev \
libopenjp2-7-dev \
libopenscenegraph-dev