blob: 1b1635e88d14d63577708568a84923f830b85ed6 (
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
|
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 /
COPY build.sh build.sh
COPY mxe.patch mxe.patch
RUN chmod +x build.sh && ./build.sh
|