mirror of
https://github.com/linuxserver/docker-beets
synced 2025-12-06 08:23:31 +01:00
25 lines
721 B
Docker
25 lines
721 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:mc3man/trusty-media && \
|
|
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
|
|
|