11 lines
365 B
Docker
11 lines
365 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
|
|
RUN pacman -Syu --noconfirm
|
|
RUN pacman -S --noconfirm beets python python-pyacoustid chromaprint ffmpeg imagemagick python-requests
|
|
ENV BEETSDIR=/config
|
|
RUN touch /var/log/beets.log
|
|
CMD tail -f /var/log/beets.log
|