From c64adc056e57557339a942c654b8de62203c0efa Mon Sep 17 00:00:00 2001 From: assignUser Date: Wed, 19 Aug 2020 00:25:18 +0000 Subject: [PATCH] adjust zip command --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 65cb29a4..cabcb996 100644 --- a/Dockerfile +++ b/Dockerfile @@ -252,7 +252,8 @@ RUN R -e "install.packages(list.dirs('/home/r-library',recursive = FALSE), repos ################## # Install chktex # ################## -RUN wget --tries=5 http://mirrors.ctan.org/support/chktex.zip -O - -q | unzip -q -\ +RUN wget --tries=5 http://mirrors.ctan.org/support/chktex.zip -O chktex.zip -q \ + && unzip -q chktex.zip \ && cd chktex \ && ./configure && make \ && mv chktex /usr/bin \