2016-07-04 12:47:42 +01:00
|
|
|
|
FROM lsiobase/alpine.python
|
|
|
|
|
MAINTAINER smdion <me@seandion.com> ,sparklyballs
|
2015-07-30 10:27:41 -05:00
|
|
|
|
|
2016-07-04 12:47:42 +01:00
|
|
|
|
# install packages
|
|
|
|
|
RUN \
|
|
|
|
|
apk add --no-cache \
|
|
|
|
|
ffmpeg \
|
|
|
|
|
mc && \
|
|
|
|
|
apk add --no-cache --repository \
|
2016-08-08 14:10:57 +01:00
|
|
|
|
http://nl.alpinelinux.org/alpine/edge/testing \
|
2016-07-04 12:47:42 +01:00
|
|
|
|
shntool
|
2015-07-15 11:10:00 -05:00
|
|
|
|
|
2016-07-04 12:47:42 +01:00
|
|
|
|
# add local files
|
|
|
|
|
COPY root/ /
|
2015-07-15 11:10:00 -05:00
|
|
|
|
|
2016-07-04 12:47:42 +01:00
|
|
|
|
# ports and volumes
|
2015-07-30 18:22:56 +02:00
|
|
|
|
EXPOSE 8181
|
2016-08-08 14:10:57 +01:00
|
|
|
|
VOLUME /config /downloads /music
|