mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 04:16:45 +01:00
sp
This commit is contained in:
parent
50cd006077
commit
3fe034b117
17
spotify-wine/Dockerfile
Normal file
17
spotify-wine/Dockerfile
Normal 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" ]
|
|
@ -1,17 +1,15 @@
|
||||||
FROM debian:jessie
|
FROM ubuntu:14.04
|
||||||
MAINTAINER Jessie Frazelle <jess@linux.com>
|
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 \
|
RUN apt-get update && apt-get install -y \
|
||||||
wine \
|
libpangoxft-1.0-0 \
|
||||||
|
alsa-utils \
|
||||||
|
software-properties-common \
|
||||||
--no-install-recommends && \
|
--no-install-recommends && \
|
||||||
dpkg --add-architecture i386 && \
|
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 94558F59 && \
|
||||||
|
echo "deb http://repository.spotify.com stable non-free" >> /etc/apt/sources.list.d/spotify.list && \
|
||||||
apt-get update && \
|
apt-get update && \
|
||||||
apt-get install -y \
|
apt-get install -y \
|
||||||
wine32
|
spotify-client
|
||||||
|
|
||||||
COPY ./SpotifySetup.exe /usr/src/SpotifySetup.exe
|
ENTRYPOINT [ "/usr/bin/spotify" ]
|
||||||
|
|
||||||
CMD [ "wine", "/usr/src/SpotifySetup.exe" ]
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user