fix: merge Dockerfile RUN
commands into one
This commit is contained in:
parent
e0d512ea9b
commit
553f7c0b5f
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue