Browse code

Remove OSX cross stuff from main Dockerfile

This is no longer needed here. It was required for compiling the CLI
which we no longer do here.

Signed-off-by: Brian Goff <cpuguy83@gmail.com>

Brian Goff authored on 2017/06/21 05:06:37
Showing 1 changed files
... ...
@@ -90,17 +90,6 @@ RUN cd /usr/local/lvm2 \
90 90
 	&& make install_device-mapper
91 91
 # See https://git.fedorahosted.org/cgit/lvm2.git/tree/INSTALL
92 92
 
93
-# Configure the container for OSX cross compilation
94
-ENV OSX_SDK MacOSX10.11.sdk
95
-ENV OSX_CROSS_COMMIT a9317c18a3a457ca0a657f08cc4d0d43c6cf8953
96
-RUN set -x \
97
-	&& export OSXCROSS_PATH="/osxcross" \
98
-	&& git clone https://github.com/tpoechtrager/osxcross.git $OSXCROSS_PATH \
99
-	&& ( cd $OSXCROSS_PATH && git checkout -q $OSX_CROSS_COMMIT) \
100
-	&& curl -sSL https://s3.dockerproject.org/darwin/v2/${OSX_SDK}.tar.xz -o "${OSXCROSS_PATH}/tarballs/${OSX_SDK}.tar.xz" \
101
-	&& UNATTENDED=yes OSX_VERSION_MIN=10.6 ${OSXCROSS_PATH}/build.sh
102
-ENV PATH /osxcross/target/bin:$PATH
103
-
104 93
 # Install seccomp: the version shipped upstream is too old
105 94
 ENV SECCOMP_VERSION 2.3.2
106 95
 RUN set -x \