mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
17 lines
276 B
Docker
17 lines
276 B
Docker
#
|
|
# Dockerfile for mpd-arm
|
|
#
|
|
|
|
FROM armhf/debian:jessie
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
RUN set -xe \
|
|
&& apt-get update \
|
|
&& apt-get install -y mpd mpc \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
VOLUME /var/lib/mpd
|
|
|
|
EXPOSE 6600
|
|
CMD ["mpd", "--stdout", "--no-daemon"]
|