Fix Dockerfile: install jq in the builder image

It seems jq is now required by the prepare-web.sh script, so add it in the builder image.
pull/651/head
David Douard 1 year ago committed by GitHub
parent 8148999512
commit f3a929f9fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,5 @@
FROM ghcr.io/cirruslabs/flutter as builder
RUN sudo apt update && sudo apt install curl -y
RUN sudo apt update && sudo apt install curl jq -y
COPY . /app
WORKDIR /app
RUN ./scripts/prepare-web.sh

Loading…
Cancel
Save