commit ee9a5610
Updated to use Debian 9 and mirror.mxe.cc for the basic image
Changed files
| M | mxe_basic/Dockerfile before |
diff --git a/mxe_basic/Dockerfile b/mxe_basic/Dockerfile
index abbe000..f18ad87 100644
--- a/mxe_basic/Dockerfile
+++ b/mxe_basic/Dockerfile
@@ -1,16 +1,17 @@
-FROM debian:8
-#Use http://pkg.mxe.cc/
+FROM debian:9
+RUN apt-get update && apt-get install -y gnupg
+#Use http://mirror.mxe.cc/
#First add the repository and install the static gcc compiler. This ensures that everything basic is setup.
-RUN echo "deb http://pkg.mxe.cc/repos/apt/debian wheezy main" > \
+RUN echo "deb http://mirror.mxe.cc/repos/apt stretch main" > \
/etc/apt/sources.list.d/mxeapt.list && \
- apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D43A795B73B16ABE9643FE1AFD8FFF16DB45C6AB && \
+ apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 86B72ED9 && \
apt-get update && \
apt-get install -y mxe-i686-w64-mingw32.static-gcc \
nsis \
zip \
libtool
#All packages!
-#RUN apt-get update && wget -O - http://pkg.mxe.cc/repos/apt/debian/dists/jessie/main/binary-amd64/Packages | grep Package | awk '{print $2}' | xargs apt-get install -y
+#RUN apt-get update && wget -O - http://mirror.mxe.cc/repos/apt/debian/dists/jessie/main/binary-amd64/Packages | grep Package | awk '{print $2}' | xargs apt-get install -y
-#Set the path
+#Set the path
env PATH /usr/lib/mxe/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin