1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/mpd/arm/Dockerfile
2021-02-22 17:37:40 +08:00

16 lines
253 B
Docker

#
# Dockerfile for mpd-arm
#
FROM arm32v7/alpine:3.12
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apk add --no-cache mpd mpc ncmpc \
&& setcap -r /usr/bin/mpd
VOLUME /var/lib/mpd
EXPOSE 6600
CMD ["mpd", "--stdout", "--no-daemon"]