Fix curl command

This commit is contained in:
Shanavas M 2018-01-19 00:17:16 +03:00 committed by GitHub
parent 96fc5813c6
commit eb7d6fed86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,8 +25,8 @@ RUN curl https://deb.nodesource.com/node_6.x/pool/main/n/nodejs/nodejs_6.7.0-1no
&& rm node.deb && rm node.deb
# wkhtmltopdf # wkhtmltopdf
RUN curl https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz > wkhtml.tar.xz \ RUN curl -L https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz > wkhtml.tar.xz \
&& tar -Jxf wkhtml.tar.xz \ && tar xf wkhtml.tar.xz \
&& mv wkhtmltox/bin/wk* /usr/local/bin/ && mv wkhtmltox/bin/wk* /usr/local/bin/
USER frappe USER frappe