aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2020-03-22 15:02:03 -0400
committerJoshua M. Boniface <joshua@boniface.me>2020-03-22 15:02:03 -0400
commit02cfa155824856c9ae744115bd0ddf19de4cb44d (patch)
tree441c659bd91f415c3d86f4935ff6955b64c98fb3
parent0e171d794c8a45fc39ee3385a8bc50f042675ab3 (diff)
Quickly fix failing curl in ARM Dockerfile
-rw-r--r--Dockerfile.arm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile.arm b/Dockerfile.arm
index 1c61dff5e..0fe1b26f4 100644
--- a/Dockerfile.arm
+++ b/Dockerfile.arm
@@ -39,7 +39,7 @@ 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 -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 - && \
+ curl -ks 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 && \
apt-get update && \