From e9c30a65c2ef37100ec3495e93301b99e1e03acc Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 16 Sep 2021 11:54:53 +0200 Subject: [PATCH] install bash & jq since they are not present on the alpine image. Install it only for test so we do not bloat our production image --- frontend/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 5ec90fe81..879fdf4e0 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -72,6 +72,9 @@ RUN yarn run build ################################################################################## FROM build as test +# Install Additional Software +RUN apk add --no-cache bash jq + # Run command CMD /bin/sh -c "yarn run dev"