mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
18 lines
420 B
Docker
18 lines
420 B
Docker
|
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" ]
|