dockerfiles/spotify/Dockerfile
Jessica Frazelle 3fe034b117 sp
2015-02-12 16:40:20 -08:00

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" ]