diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..17efa2c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,48 @@ +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\ + 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 + |