Skip to content

Commit

Permalink
fix: 🐛 构建出错
Browse files Browse the repository at this point in the history
  • Loading branch information
monlor committed Jun 1, 2024
1 parent 6dbf159 commit f3d6116
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions emby/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ ADD https://github.com/msoap/shell2http/releases/download/v${SHELL2HTTP_VERSION}

RUN tar -zxvf shell2http_${SHELL2HTTP_VERSION}_linux_${TARGETARCH}.tar.gz -C /usr/bin/ shell2http && \
rm -rf shell2http_${SHELL2HTTP_VERSION}_linux_${TARGETARCH}.tar.gz && \
[ ${TARGETARCH} = "arm64" ] && ARCH="aarch64" && \
[ ${TARGETARCH} = "amd64" ] && ARCH="x86_64" && \
[ ${TARGETARCH} = "arm64" ] && ARCH="aarch64" || true && \
[ ${TARGETARCH} = "amd64" ] && ARCH="x86_64" || true && \
wget -O /dumb-init https://github.com/Yelp/dumb-init/releases/download/v${DUMB_INIT_VERSION}/dumb-init_${DUMB_INIT_VERSION}_${ARCH} && \
chmod +x /dumb-init

Expand Down

0 comments on commit f3d6116

Please sign in to comment.