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.
|
# This Dockerfile builds a docker image for the beets music library manager.
|
||||||
|
|
||||||
FROM archlinux:latest
|
FROM archlinux:latest
|
||||||
RUN pacman-key --init
|
RUN pacman-key --init && \
|
||||||
RUN pacman -Syu --noconfirm
|
pacman -Syu --noconfirm && \
|
||||||
RUN pacman -S --noconfirm beets python python-pyacoustid chromaprint ffmpeg imagemagick python-requests
|
pacman -S --noconfirm beets python python-pyacoustid chromaprint ffmpeg imagemagick python-requests && \
|
||||||
|
touch /var/log/beets.log
|
||||||
ENV BEETSDIR=/config
|
ENV BEETSDIR=/config
|
||||||
RUN touch /var/log/beets.log
|
|
||||||
CMD tail -f /var/log/beets.log
|
CMD tail -f /var/log/beets.log
|
||||||
|
|
Loading…
Add table
Reference in a new issue