diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-03-09 22:41:23 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-09 22:41:23 +0900 |
| commit | bf34105af35f5cbed51fbabdab75e6561a6924ea (patch) | |
| tree | bc55bfc19b1c4551fb8138ad941f88e475e79353 | |
| parent | ad93f3b1468ce4f8a536e2f7b15b769043f32efe (diff) | |
| parent | c257d6071c3a8dd141d1191062e892d912177d9a (diff) | |
Merge pull request #2541 from joshuaboniface/fix-docker-arm
Fix curl for Jellyfin GPG key
| -rw-r--r-- | Dockerfile.arm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile.arm b/Dockerfile.arm index 4c7aa6aa7..07780e27b 100644 --- a/Dockerfile.arm +++ b/Dockerfile.arm @@ -38,7 +38,7 @@ ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility" COPY --from=qemu /usr/bin/qemu-arm-static /usr/bin RUN apt-get update \ && apt-get install --no-install-recommends --no-install-suggests -y ca-certificates gnupg curl && \ - curl -s https://repo.jellyfin.org/debian/jellyfin_team.gpg.key | apt-key add - && \ + curl -ks https://repo.jellyfin.org/debian/jellyfin_team.gpg.key | apt-key add - && \ curl -s https://keyserver.ubuntu.com/pks/lookup?op=get\&search=0x6587ffd6536b8826e88a62547876ae518cbcf2f2 | apt-key add - && \ echo 'deb [arch=armhf] https://repo.jellyfin.org/debian buster main' > /etc/apt/sources.list.d/jellyfin.list && \ echo "deb http://ppa.launchpad.net/ubuntu-raspi2/ppa/ubuntu bionic main">> /etc/apt/sources.list.d/raspbins.list && \ |
