summaryrefslogblamecommitdiff
path: root/Dockerfile
blob: 1b1635e88d14d63577708568a84923f830b85ed6 (plain) (tree)



























                                  
      



















                                   
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