11 lines
380 B
Docker
11 lines
380 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
# This Dockerfile builds a docker image for the beets music library manager.
|
|
|
|
FROM archlinux:latest
|
|
RUN pacman-key --init && \
|
|
pacman -Syu --noconfirm && \
|
|
pacman -S --noconfirm beets python python-pyacoustid chromaprint ffmpeg imagemagick python-requests && \
|
|
touch /var/log/beets.log
|
|
ENV BEETSDIR=/config
|
|
CMD tail -f /var/log/beets.log
|