fix spotify

Signed-off-by: Jess Frazelle <me@jessfraz.com>
This commit is contained in:
Jess Frazelle 2016-08-11 18:55:48 -07:00
parent f08f22ab31
commit c4219bf105
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
2 changed files with 11 additions and 8 deletions

View File

@ -7,7 +7,7 @@
# --name rainbowstream \ # --name rainbowstream \
# jess/rainbowstream # jess/rainbowstream
# #
FROM alpine:latest FROM python:2-alpine
MAINTAINER Jessica Frazelle <jess@docker.com> MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apk --no-cache add \ RUN apk --no-cache add \
@ -16,10 +16,10 @@ RUN apk --no-cache add \
freetype \ freetype \
freetype-dev \ freetype-dev \
openjpeg-dev \ openjpeg-dev \
python \ zlib-dev
python-dev \
py-pip \ RUN USER=root pip install \
zlib-dev \ pillow==2.8.0 \
&& pip install pillow==2.8.0 rainbowstream rainbowstream
ENTRYPOINT [ "rainbowstream" ] ENTRYPOINT [ "rainbowstream" ]

View File

@ -13,14 +13,17 @@
FROM debian:sid FROM debian:sid
MAINTAINER Jessie Frazelle <jess@linux.com> MAINTAINER Jessie Frazelle <jess@linux.com>
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886 \ RUN apt-get update && apt-get install -y \
gnupg \
--no-install-recommends \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886 \
&& echo "deb http://repository.spotify.com stable non-free" >> /etc/apt/sources.list.d/spotify.list \ && echo "deb http://repository.spotify.com stable non-free" >> /etc/apt/sources.list.d/spotify.list \
&& apt-get update && apt-get install -y \ && apt-get update && apt-get install -y \
alsa-utils \ alsa-utils \
libgl1-mesa-dri \ libgl1-mesa-dri \
libgl1-mesa-glx \ libgl1-mesa-glx \
libpangoxft-1.0-0 \ libpangoxft-1.0-0 \
libssl1.0.0 \ libssl1.0.2 \
libxss1 \ libxss1 \
spotify-client \ spotify-client \
xdg-utils \ xdg-utils \