diff --git a/context/Dockerfile b/context/Dockerfile index 1e406b9..7bad2d5 100644 --- a/context/Dockerfile +++ b/context/Dockerfile @@ -3,9 +3,9 @@ # 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 +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 -RUN touch /var/log/beets.log CMD tail -f /var/log/beets.log