From 1d931c8c30cb1c8239babe1b39fc5f89660b2f77 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Fri, 10 Dec 2021 07:37:21 +0100 Subject: [PATCH] Update Dockerfile --- emby/Dockerfile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/emby/Dockerfile b/emby/Dockerfile index 47a56d2f0..be81c64a0 100644 --- a/emby/Dockerfile +++ b/emby/Dockerfile @@ -1,13 +1,18 @@ +############### +# Build Image # +############### + ARG BUILD_FROM ARG BUILD_VERSION FROM ${BUILD_FROM} -# Set shell -SHELL ["/bin/bash", "-o", "pipefail", "-c"] - ################ # Modify Image # ################ + +# Set shell +SHELL ["/bin/bash", "-o", "pipefail", "-c"] + RUN \ # Allow UID and GID setting sed -i 's/bash/bashio/g' /etc/cont-init.d/10-adduser \