Add insecure flag to curl

This commit is contained in:
2021-01-18 14:34:34 +01:00
parent c1fcb9458c
commit bed824edf5

View File

@@ -13,8 +13,8 @@ RUN apt-get update && \
RUN apt-get update \ RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y \ && DEBIAN_FRONTEND=noninteractive apt-get install -y \
curl gnupg \ curl gnupg \
&& curl -L https://apt.mopidy.com/mopidy.gpg -o /tmp/mopidy.gpg \ && curl -L --insecure https://apt.mopidy.com/mopidy.gpg -o /tmp/mopidy.gpg \
&& curl -L https://apt.mopidy.com/mopidy.list -o /etc/apt/sources.list.d/mopidy.list \ && curl -L --insecure https://apt.mopidy.com/mopidy.list -o /etc/apt/sources.list.d/mopidy.list \
&& apt-key add /tmp/mopidy.gpg \ && apt-key add /tmp/mopidy.gpg \
&& apt-get update \ && apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y \ && DEBIAN_FRONTEND=noninteractive apt-get install -y \