2015-04-28 19:33:32 +02:00
|
|
|
# Run spotify windows app in a container with wine
|
|
|
|
#
|
|
|
|
# docker run --rm -it \
|
2015-06-05 19:24:11 +02:00
|
|
|
# -v /etc/localtime:/etc/localtime:ro \
|
|
|
|
# --cpuset-cpus 0 \
|
|
|
|
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
|
|
|
# -e DISPLAY=unix$DISPLAY \
|
|
|
|
# --device /dev/snd:/dev/snd \
|
|
|
|
# --name spotify-wine \
|
|
|
|
# jess/spotify-wine bash
|
2015-04-28 19:33:32 +02:00
|
|
|
#
|
2015-02-13 01:40:20 +01:00
|
|
|
FROM debian:jessie
|
|
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
|
|
|
|
# install wine
|
|
|
|
# and iceweasel since we have to sign in w facebook
|
|
|
|
# GROSS
|
|
|
|
RUN apt-get update && apt-get install -y \
|
2015-06-05 19:24:11 +02:00
|
|
|
wine \
|
|
|
|
--no-install-recommends && \
|
|
|
|
dpkg --add-architecture i386 && \
|
|
|
|
apt-get update && \
|
|
|
|
apt-get install -y \
|
2015-06-07 02:48:44 +02:00
|
|
|
wine32 \
|
|
|
|
--no-install-recommends \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2015-02-13 01:40:20 +01:00
|
|
|
|
|
|
|
COPY ./SpotifySetup.exe /usr/src/SpotifySetup.exe
|
|
|
|
|
|
|
|
CMD [ "wine", "/usr/src/SpotifySetup.exe" ]
|