diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 5eb95fc..f1d30c7 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -20,8 +20,6 @@ jobs: outputs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps: - - id: install-jq - run: apt-get update && apt-get -qq install -y --no-install-recommends jq - id: set-matrix run: | DATA=$(bcdata cat WHSE_BASEMAPPING.NTS_250K_GRID | jq -c '.properties | {map_tile: .MAP_TILE}' | tr '\n' ',') diff --git a/Dockerfile b/Dockerfile index e58069c..9da3164 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,7 @@ RUN apt-get update && \ apt-get -qq install -y --no-install-recommends zip && \ apt-get -qq install -y --no-install-recommends unzip && \ apt-get -qq install -y --no-install-recommends parallel && \ + apt-get -qq install -y --no-install-recommends jq && \ apt-get -qq install -y --no-install-recommends postgresql-client && \ apt-get -qq install -y --no-install-recommends python3-pip && \ apt-get -qq install -y --no-install-recommends python3-dev && \