Browse Source

Fix: gnurl in version 7.57 still used xzip

ng0 5 years ago
parent
commit
c6c9880ae8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      contrib/docker/Dockerfile

+ 2 - 2
contrib/docker/Dockerfile

@@ -35,9 +35,9 @@ RUN apt-get update && \
 # Install GNUrl
 ENV GNURL_VERSION=7.57.0
 
-RUN wget -O /tmp/gnurl.tar.Z https://ftpmirror.gnu.org/gnu/gnunet/gnurl-${GNURL_VERSION}.tar.Z  
+RUN wget -O /tmp/gnurl.tar.xz https://ftpmirror.gnu.org/gnu/gnunet/gnurl-${GNURL_VERSION}.tar.xz
 RUN cd /tmp && \
-      tar xvf gnurl.tar.bz2 && \
+      tar xvf gnurl.tar.xz && \
       cd gnurl-${GNURL_VERSION} && \
       autoreconf -i && \
       ./configure \