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
|
FROM ubuntu:16.10
# We need this to use apt-key
RUN apt-get update && apt-get install -y \
dirmngr
# Add mxe repos
RUN echo "deb http://pkg.mxe.cc/repos/apt/debian wheezy main" > \
/etc/apt/sources.list.d/mxeapt.list && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D43A795B73B16ABE9643FE1AFD8FFF16DB45C6AB
RUN apt-get update && apt-get install -y \
autoconf \
automake \
autopoint \
bash \
bison \
bzip2 \
flex \
gettext \
git \
g++ \
g++-multilib \
gperf \
intltool \
libc6-dev-i386 \
libffi-dev \
libgdk-pixbuf2.0-dev \
libtool \
libltdl-dev \
libssl-dev \
libxml-parser-perl \
make \
openssl \
p7zip-full \
patch \
perl \
pkg-config \
python \
ruby \
scons \
sed \
unzip \
wget \
xz-utils \
nsis \
mxe-i686-w64-mingw32.shared-qtbase \
mxe-i686-w64-mingw32.shared-libxml2 \
mxe-i686-w64-mingw32.shared-libxslt
WORKDIR /root
|