2015-04-28 10:33:32 -07:00
|
|
|
# Run spotify windows app in a container with wine
|
|
|
|
#
|
|
|
|
# docker run --rm -it \
|
2015-06-05 10:24:11 -07: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 10:33:32 -07:00
|
|
|
#
|
2015-06-08 18:31:31 -07:00
|
|
|
FROM jess/wine
|
2015-02-12 16:40:20 -08:00
|
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
|
2015-09-24 18:04:41 -07:00
|
|
|
ADD https://d1clcicqv97n4s.cloudfront.net/ctrl/SpotifySetup.exe /usr/src/SpotifySetup.exe
|
2015-02-12 16:40:20 -08:00
|
|
|
|
2015-06-08 18:31:31 -07:00
|
|
|
RUN echo "wine /usr/src/SpotifySetup.exe" > /root/.bash_history
|
2015-02-12 16:40:20 -08:00
|
|
|
|
2015-06-08 18:31:31 -07:00
|
|
|
CMD [ "bash" ]
|