소스 검색

Merge pull request #460 from nvllsvm/remove_dep

Remove deprecation warning from Docker
Andrew Rabert 6 년 전
부모
커밋
5af4d4d071
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 3
      Dockerfile

+ 1 - 3
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