mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
16 lines
498 B
Docker
16 lines
498 B
Docker
FROM ubuntu:14.04
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
libpangoxft-1.0-0 \
|
|
alsa-utils \
|
|
software-properties-common \
|
|
--no-install-recommends && \
|
|
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 install -y \
|
|
spotify-client
|
|
|
|
ENTRYPOINT [ "/usr/bin/spotify" ]
|