dockerfiles/tomahawk/Dockerfile

13 lines
316 B
Docker
Raw Normal View History

2015-02-09 18:03:51 -08:00
FROM ubuntu:14.04
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 \
2015-02-09 18:03:51 -08:00
software-properties-common \
--no-install-recommends && \
add-apt-repository ppa:tomahawk/ppa && \
apt-get update && \
apt-get install -y \
tomahawk
2015-01-01 16:20:12 -08:00
2015-01-06 18:56:00 -08:00
ENTRYPOINT [ "/usr/bin/tomahawk" ]