mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-12-10 15:02:41 +01:00
17
ncmpc/Dockerfile
Normal file
17
ncmpc/Dockerfile
Normal 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" ]
|
||||
Reference in New Issue
Block a user