mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
d497485990
Signed-off-by: Jess Frazelle <me@jessfraz.com>
20 lines
521 B
Docker
20 lines
521 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 r.j3ss.co/wine
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
ADD https://d1clcicqv97n4s.cloudfront.net/ctrl/SpotifySetup.exe /usr/src/SpotifySetup.exe
|
|
|
|
RUN echo "wine /usr/src/SpotifySetup.exe" > /root/.bash_history
|
|
|
|
CMD [ "bash" ]
|