You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
730 B
Docker
26 lines
730 B
Docker
FROM linuxserver/baseimage.python
|
|
MAINTAINER smdion <me@seandion.com> ,Sparklyballs <sparklyballs@linuxserver.io>
|
|
|
|
ENV BEETSDIR /config
|
|
ENV APTLIST="ffmpeg lame libav-tools libchromaprint-tools libyaml-dev mp3gain"
|
|
|
|
RUN add-apt-repository ppa:kirillshkrogalev/ffmpeg-next && \
|
|
apt-get update -q && \
|
|
apt-get install $APTLIST -qy && \
|
|
pip install -U pyacoustid && \
|
|
pip install -U pylast && \
|
|
pip install -U flask && \
|
|
pip install -U beets && \
|
|
apt-get clean && rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/*
|
|
|
|
#Adding Custom files
|
|
ADD init/ /etc/my_init.d/
|
|
ADD services/ /etc/service/
|
|
ADD defaults/ /defaults/
|
|
RUN chmod -v +x /etc/service/*/run /etc/my_init.d/*.sh
|
|
|
|
# Volumes and Ports
|
|
VOLUME /config /downloads /music
|
|
EXPOSE 8337
|
|
|