Install jq from Debian repositories instead of downloading x64 binary from github
This commit is contained in:
parent
25eccc880e
commit
3d1a06dfa9
|
@ -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/
|
||||||
|
|
Loading…
Reference in New Issue