From 19b3034c2b74756752e75d57489fe3ae5a859b5d Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Sat, 25 Nov 2017 19:27:22 +0100 Subject: [PATCH] ensure permissions on ffmpeg link --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c4eb933..e970828 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,9 +12,8 @@ RUN chown -R airsonic:airsonic ${AIRSONIC_DIR} RUN mkdir -p $AIRSONIC_DIR/data/transcode RUN ln -s /usr/bin/ffmpeg $AIRSONIC_DIR/data/transcode/ffmpeg -RUN ln -s /usr/bin/lame $AIRSONIC_DIR/data/transcode/lame RUN chmod +x $AIRSONIC_DIR/data/transcode/ffmpeg -RUN chmod +x $AIRSONIC_DIR/data/transcode/lame +RUN chown airsonic:airsonic $AIRSONIC_DIR/data/transcode/ffmpeg ADD /rootfs /