From 553f7c0b5fd0a34d87f3107eecf187d1c0a393ad Mon Sep 17 00:00:00 2001 From: Julian Lobbes Date: Sat, 10 Sep 2022 16:25:38 +0200 Subject: [PATCH] fix: merge Dockerfile `RUN` commands into one --- context/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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