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

View File

@ -13,14 +13,17 @@
FROM debian:sid
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 \
&& apt-get update && apt-get install -y \
alsa-utils \
libgl1-mesa-dri \
libgl1-mesa-glx \
libpangoxft-1.0-0 \
libssl1.0.0 \
libssl1.0.2 \
libxss1 \
spotify-client \
xdg-utils \