Install jq from Debian repositories instead of downloading x64 binary from github

This commit is contained in:
Georg Krause 2022-02-20 13:03:44 +01:00
parent 25eccc880e
commit 3d1a06dfa9
No known key found for this signature in database
GPG Key ID: FD479B9A4D48E632
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
FROM node:16-buster FROM node:16-buster
# needed to compile translations # needed to compile translations
RUN curl -L -o /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 && chmod +x /usr/local/bin/jq RUN apt-get update && apt-get install -y jq
EXPOSE 8080 EXPOSE 8080
WORKDIR /app/ WORKDIR /app/