forked from mordak/playbook-dev-tools
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Dockerfile
53 lines (45 loc) · 1.13 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
FROM i386/ubuntu:18.04
RUN export DEBIAN_FRONTEND=noninteractive
RUN apt-get -q update
RUN apt-get -yq install \
subversion \
curl \
tar \
gzip \
bzip2 \
ruby \
git \
subversion \
curl \
texinfo \
autopoint \
m4 \
autoconf \
groff \
wget \
libgtk2.0-0 \
xvfb \
gcc \
libxtst6 \
net-tools \
lzip \
g++ \
zlib1g-dev
WORKDIR /root
RUN wget https://archive.org/download/native-SDK-for-blackberry10/Momentics%20IDE/momentics-2.1.2-201503050937.linux.x86_64.run ; \
chmod +x momentics-2.1.2-201503050937.linux.x86.run ; \
yes 'y' | LESS='+q' ./momentics-2.1.2-201503050937.linux.x86.run ; \
rm momentics-2.1.2-201503050937.linux.x86.run
WORKDIR /root/bbndk
ENV DISPLAY=:1
RUN Xvfb :1 & ./sdkinstall --install 10.3.1.995
RUN echo "source /root/bbndk/bbndk-env_10_3_1_995.sh" >> /root/.bashrc
RUN echo "export LC_ALL=C" >> /root/.bashrc
RUN apt-get -q update
RUN apt-get -yq install eclipse
RUN apt-get -yq install gtk-chtheme ubuntu-mate-themes fonts-roboto
RUN apt-get -yq install \
gettext \
build-essential \
cmake
RUN chmod -R 777 /root