Resolve "The command '/bin/sh -c apk update && apk add jq' returned a non-zero code: 1"

Thanks @CameronDiver but I am not using apk anywhere in my docker file. I use apt-get to install the libraries. Below is a portion of my Dockerfile. Can you see anything which might be using the apk.

FROM balenalib/generic-armv7ahf-debian:jessie-build

ENV INITSYSTEM on
ENV DBUS_SYSTEM_BUS_ADDRESS unix:path=/host/run/dbus/system_bus_socket

RUN echo “umask 0077” >> /etc/profile

RUN printf “deb http://archive.debian.org/debian/ jessie main\ndeb-src http://archive.debian.org/debian/ jessie main\ndeb http://security.debian.org jessie/updates main\ndeb-src http://security.debian.org jessie/updates main” > /etc/apt/sources.list

#Install unnecessary SDS tools like lftp
RUN apt-get -q update && apt-get install -yq --no-install-recommends
build-essential
cmake
libcurl4-openssl-dev
htpdate
git
libssl-dev
uuid-dev
libunwind8
libunwind8-dev
gettext
libicu-dev
liblttng-ust-dev
unzip
alsa-utils
libasound2-dev
sqlite3
libsqlite3-dev
python-dbus
libglib2.0-bin
qdbus
dbus
libgoogle-glog-dev
libboost-all-dev
&& apt-get clean && rm -rf /var/lib/apt/lists/*