dockerfiles/spotify-wine/Dockerfile
Jessica Frazelle c510726bc1 add gcalcli, itunes, update spotify-wine
Signed-off-by: Jessica Frazelle <princess@docker.com>
2015-06-08 19:36:59 -07:00

20 lines
474 B
Docker

# Run spotify windows app in a container with wine
#
# docker run --rm -it \
# -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
#
FROM jess/wine
MAINTAINER Jessie Frazelle <jess@linux.com>
COPY SpotifySetup.exe /usr/src/SpotifySetup.exe
RUN echo "wine /usr/src/SpotifySetup.exe" > /root/.bash_history
CMD [ "bash" ]