-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
39 lines (33 loc) · 1.03 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
#
# ----------------------------------------------------------------------------
# "THE BEER-WARE LICENSE" (Revision 42):
# <[email protected]> wrote this file. As long as you retain this notice you
# can do whatever you want with this stuff. If we meet some day, and you think
# this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
# ----------------------------------------------------------------------------
#
FROM ubuntu:16.04
MAINTAINER "tetractius" <[email protected]>
RUN apt-get update -y # && apt-get upgrade -y
RUN apt-get install -qq -y \
build-essential \
libtool \
curl \
git \
libjpeg8-dev \
libpng12-dev \
libtiff5-dev \
libgoogle-glog-dev \
libgflags-dev \
libhdf5-dev \
libxcb-xfixes0-dev \
libssl-dev \
pxz \
wget \
mesa-common-dev \
libgl1-mesa-dev \
python-dev \
python3-dev
ADD ./qt5.10.1.sh /qt5.10.1.sh
# Download qt and compile opensource without GTK support
RUN bash /qt5.10.1.sh