Skip to content

Commit

Permalink
fix: 🐛 jellyfin添加ping命令
Browse files Browse the repository at this point in the history
  • Loading branch information
monlor committed Jun 7, 2024
1 parent 1be36d5 commit e1ace78
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions jellyfin/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ FROM ${BASE_IMAGE}

LABEL MAINTAINER [email protected]

# 更新软件包索引、安装 ping 命令并清理缓存
RUN apt-get update \
&& apt-get install -y iputils-ping \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

COPY --chmod=755 ./*.sh /

ENTRYPOINT [ "/entrypoint.sh" ]

0 comments on commit e1ace78

Please sign in to comment.