This commit is contained in:
Jessica Frazelle
2015-02-12 16:40:20 -08:00
parent 50cd006077
commit 3fe034b117
2 changed files with 25 additions and 10 deletions

17
spotify-wine/Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
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 \
wine \
--no-install-recommends && \
dpkg --add-architecture i386 && \
apt-get update && \
apt-get install -y \
wine32
COPY ./SpotifySetup.exe /usr/src/SpotifySetup.exe
CMD [ "wine", "/usr/src/SpotifySetup.exe" ]