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

This commit is contained in:
Ulf Gebhardt 2021-09-16 11:54:53 +02:00
parent ddb8d2aef5
commit e9c30a65c2
No known key found for this signature in database
GPG Key ID: 81308EFE29ABFEBD

View File

@ -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"