From 3d1a06dfa9eb699301cdaf56793436fce66e3418 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Sun, 20 Feb 2022 13:03:44 +0100 Subject: [PATCH] Install jq from Debian repositories instead of downloading x64 binary from github --- front/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/Dockerfile b/front/Dockerfile index 79dac26b8..5493e4bbc 100644 --- a/front/Dockerfile +++ b/front/Dockerfile @@ -1,7 +1,7 @@ FROM node:16-buster # 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 WORKDIR /app/