dockerfiles/tomahawk/Dockerfile

13 lines
316 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 \
2015-02-10 03:03:51 +01:00
software-properties-common \
--no-install-recommends && \
add-apt-repository ppa:tomahawk/ppa && \
apt-get update && \
apt-get install -y \
tomahawk
2015-01-02 01:20:12 +01:00
2015-01-07 03:56:00 +01:00
ENTRYPOINT [ "/usr/bin/tomahawk" ]