aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Rabert <6550543+nvllsvm@users.noreply.github.com>2019-01-06 17:48:44 -0500
committerGitHub <noreply@github.com>2019-01-06 17:48:44 -0500
commit5af4d4d071e7cb0fd597013d79abb880fed0d41c (patch)
tree860c755f295a6678161a635083a0f7a0b15404f9
parent0a715f919645235d55c1d7dfb404dbb6493eee59 (diff)
parente60dc805d6d33bf099d5eea06b73534542b75121 (diff)
Merge pull request #460 from nvllsvm/remove_dep
Remove deprecation warning from Docker
-rw-r--r--Dockerfile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 47414ad12..1dd49511a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -19,6 +19,4 @@ RUN apt update \
&& curl ${FFMPEG_URL} | tar Jxf - -C /usr/bin --wildcards --strip-components=1 ffmpeg*/ffmpeg ffmpeg*/ffprobe \
&& apt remove -y xz-utils
-ENTRYPOINT if [ -n "$PUID$PGUID" ]; \
- then echo "PUID/PGID are deprecated. Use Docker user param." >&2; exit 1; \
- else dotnet /jellyfin/jellyfin.dll -programdata /config; fi
+ENTRYPOINT dotnet /jellyfin/jellyfin.dll -programdata /config