Fixed broken dev front dockerfile (missing jq dependency)

This commit is contained in:
Eliot Berriot 2018-07-03 08:11:10 +02:00
parent 644969465c
commit b0c9eb8cef
No known key found for this signature in database
GPG Key ID: DD6965E2476E5C27
1 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,8 @@
FROM node:9 FROM node:9
# 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
EXPOSE 8080 EXPOSE 8080
WORKDIR /app/ WORKDIR /app/
ADD package.json . ADD package.json .