add ncpmc

Signed-off-by: Jessica Frazelle <princess@docker.com>
This commit is contained in:
Jessica Frazelle
2015-06-07 00:34:24 -07:00
parent 29b458b672
commit 707befd101
4 changed files with 40 additions and 19 deletions

17
ncmpc/Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
# ncmpc is a fully featured MPD client
# which runs in a terminal (using ncurses)
#
# docker run --rm -it \
# -v /etc/localtime:/etc/localtime:ro \
# --link mpd:mpd \
# jess/ncmpc
#
FROM debian:sid
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
ncmpc \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT [ "ncmpc" ]