Created
January 1, 2018 15:54
-
-
Save mattintosh4/c13a13148987b7724dda7635bed4f9ee to your computer and use it in GitHub Desktop.
Dockerfile for qaac64.exe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:xenial | |
MAINTAINER m-yoshida | |
RUN \ | |
dpkg --add-architecture i386 \ | |
&& apt-get update \ | |
&& apt-get install -y -o Dpkg::Progress-Fancy=1 curl ca-certificates apt-transport-https p7zip-full jq \ | |
&& curl -O https://dl.winehq.org/wine-builds/Release.key \ | |
&& apt-key add Release.key \ | |
&& echo 'deb https://dl.winehq.org/wine-builds/ubuntu/ xenial main' >>/etc/apt/sources.list \ | |
&& apt-get update \ | |
&& apt-get install -y -o Dpkg::Progress-Fancy=1 --install-recommends winehq-stable | |
RUN \ | |
apt-get install -y locales \ | |
&& echo "ja_JP.UTF-8 UTF-8" >> /etc/locale.gen \ | |
&& locale-gen | |
RUN curl -O 'https://secure-appldnld.apple.com/itunes12/091-56359-20171213-EDF2198A-E039-11E7-9A9F-D21A1E4B8CED/iTunes64Setup.exe' | |
RUN \ | |
curl -O 'https://gist.githubusercontent.com/mattintosh4/d5116168d0743d437ea1150cf11588d7/raw/80d243f73bbd3d8447747956a92984565e15b09f/qaac_builder_latest.sh' \ | |
&& bash qaac_builder_latest.sh iTunes64Setup.exe \ | |
&& ln -s /qaac_2.64 /qaac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment