summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2019-01-12 12:29:11 +1100
committerDamien Zammit <damien@zamaudio.com>2019-01-12 12:29:11 +1100
commit26392514131a1baa32d8bb0a926e7540597ba01e (patch)
tree364462382a4bf8178207369848c6cb0b3fcdf593
parent0dca092afbc3fe6199b4be26005c595c8b3b265f (diff)
Dockerfile: Fix order of manual package install
-rw-r--r--Dockerfile13
1 files changed, 1 insertions, 12 deletions
diff --git a/Dockerfile b/Dockerfile
index c1042e7..e9e181b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -13,27 +13,16 @@ RUN apt-get install wget -y
RUN wget -c https://launchpad.net/~flosoft/+archive/ubuntu/cross-apple/+files/apple-uni-sdk-10.5_20110407-0.flosoft1_amd64.deb --no-check-certificate
RUN wget http://zamaudio.com/mbox2/apple-macports-fftw-3_3.3.5-1_all.deb
-RUN dpkg -i apple-macports-fftw-3_3.3.5-1_all.deb
-RUN wget http://zamaudio.com/mbox2/apple-macports-flac_1.2.1-1_all.deb
-RUN dpkg -i apple-macports-flac_1.2.1-1_all.deb
RUN wget http://zamaudio.com/mbox2/apple-macports-libiconv_1.14-0_all.deb
-RUN dpkg -i apple-macports-libiconv_1.14-0_all.deb
RUN wget http://zamaudio.com/mbox2/apple-macports-liblo_0.26-1_all.deb
-RUN dpkg -i apple-macports-liblo_0.26-1_all.deb
RUN wget http://zamaudio.com/mbox2/apple-macports-libogg_1.3.0-1_all.deb
-RUN dpkg -i apple-macports-libogg_1.3.0-1_all.deb
RUN wget http://zamaudio.com/mbox2/apple-macports-libsamplerate_0.1.9-1_all.deb
-RUN dpkg -i apple-macports-libsamplerate_0.1.9-1_all.deb
RUN wget http://zamaudio.com/mbox2/apple-macports-libsndfile_1.0.25-0_all.deb
-RUN dpkg -i apple-macports-libsndfile_1.0.25-0_all.deb
RUN wget http://zamaudio.com/mbox2/apple-macports-libvorbis_1.3.3-0_all.deb
-RUN dpkg -i apple-macports-libvorbis_1.3.3-0_all.deb
RUN wget http://zamaudio.com/mbox2/apple-x86-gcc_4.2.1~5646-1kxstudio2_amd64.deb
-RUN dpkg -i apple-x86-gcc_4.2.1~5646-1kxstudio2_amd64.deb
RUN wget http://zamaudio.com/mbox2/apple-x86-odcctools_758.159-0kxstudio2_amd64.deb
-RUN dpkg -i apple-x86-odcctools_758.159-0kxstudio2_amd64.deb
RUN wget http://zamaudio.com/mbox2/apple-x86-setup_2_amd64.deb
-RUN dpkg -i apple-x86-setup_2_amd64.deb
+RUN wget http://zamaudio.com/mbox2/apple-macports-flac_1.2.1-1_all.deb
# Apple cross compiler && build deps
RUN dpkg -i apple-x86-odcctools_758.159-0kxstudio2_amd64.deb && \