dockerfiles/tomahawk/Dockerfile

14 lines
331 B
Docker
Raw Normal View History

2015-02-10 03:03:51 +01:00
FROM ubuntu:14.04
MAINTAINER Jessie Frazelle <jess@linux.com>
2015-01-02 01:20:12 +01:00
2015-01-07 03:56:00 +01: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-02 01:20:12 +01:00
ENTRYPOINT [ "/usr/bin/tomahawk" ]