From d987e2beda6be630ad94ab3506496ed2b308835d Mon Sep 17 00:00:00 2001 From: Faraz Fallahi Date: Mon, 18 Nov 2019 21:03:58 -0500 Subject: [PATCH] Update Dockerfile --- windows/Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/windows/Dockerfile b/windows/Dockerfile index 205f3b5..ffa8b80 100644 --- a/windows/Dockerfile +++ b/windows/Dockerfile @@ -1,18 +1,22 @@ FROM ubuntu:16.04 ENTRYPOINT ["/bin/bash"] + RUN \ apt -y update && \ apt -y upgrade && \ apt -y install build-essential iputils-ping nano \ autoconf automake autopoint bash bison bzip2 flex gettext \ git g++ gperf intltool libffi-dev libgdk-pixbuf2.0-dev \ - libtool-bin libltdl-dev libssl-dev libxml-parser-perl make \ + libtool-bin libltdl-dev libssl-dev libxml-parser-perl lzip make \ openssl p7zip-full patch perl pkg-config python ruby scons \ sed unzip wget xz-utils \ g++-multilib libc6-dev-i386 && \ apt -y autoremove && \ apt -y autoclean && \ apt -y clean && \ +exit 0 + +RUN \ cd /opt && \ git clone https://github.com/mxe/mxe.git && \ cd /opt/mxe && \ @@ -21,4 +25,6 @@ make --jobs=$NPROC JOBS=$NPROC MXE_TARGETS='i686-w64-mingw32.static' qtbase qtmu ln -s /opt/mxe/usr/bin/i686-w64-mingw32.static-qmake-qt5 /usr/bin/qmake && \ qmake --version && \ exit 0 + ENV PATH="${PATH}:/opt/mxe/usr/bin" +