blob: 29f0144692eba7b8b2f648bf75334e39f64710e0 (
plain) (
blame)
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 debian:latest
RUN apt-get update
RUN apt-get install -y gnupg2
RUN DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get install -y\
autoconf\
automake\
autopoint\
bash\
bison\
bzip2\
flex\
g++\
g++-multilib\
gettext\
git\
gperf\
intltool\
libc6-dev-i386\
libgdk-pixbuf2.0-dev\
libltdl-dev\
libssl-dev\
libtool-bin\
libxml-parser-perl\
lzip\
make\
nsis\
openssl\
p7zip-full\
patch\
perl\
python\
ruby\
sed\
unzip\
wget\
xz-utils\
gawk
USER root
WORKDIR /
RUN git clone https://gitlab.com/jak89_1/docker-testing.git opt/
RUN rm -rf /opt/.git/
RUN mv opt/* /
RUN mkdir -p /build/
RUN mkdir -p /libs/dll/
RUN chmod +x build.sh && ./build.sh
|