dockerfiles/tomahawk/Dockerfile

14 lines
331 B
Docker
Raw Normal View History

FROM ubuntu:14.04
2015-02-09 18:03:51 -08:00
MAINTAINER Jessie Frazelle <jess@linux.com>
2015-01-01 16:20:12 -08:00
2015-01-06 18:56:00 -08:00
RUN apt-get update && apt-get install -y \
software-properties-common \
--no-install-recommends && \
add-apt-repository ppa:tomahawk/ppa && \
apt-get update && \
apt-get install -y \
tomahawk \
&& rm -rf /var/lib/apt/lists/*
2015-01-01 16:20:12 -08:00
ENTRYPOINT [ "/usr/bin/tomahawk" ]