Skip to content

Instantly share code, notes, and snippets.

@wader
Created February 26, 2024 23:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wader/43dfc4d92f671d7a5872e7d463cfd597 to your computer and use it in GitHub Desktop.
Save wader/43dfc4d92f671d7a5872e7d463cfd597 to your computer and use it in GitHub Desktop.
FROM ubuntu:noble
RUN apt-get update
RUN apt install -y build-essential \
pkg-config \
autoconf \
libtool \
wget \
sqlite3 libsqlite3-dev \
git
RUN wget "https://github.com/jqlang/jq/releases/download/jq-1.7.1/jq-1.7.1.tar.gz" &&\
tar xzf jq-1.7.1.tar.gz && \
cd jq-1.7.1 && \
./configure --with-oniguruma=builtin --prefix=/usr/local && \
make -j install
RUN git clone https://github.com/Florents-Tselai/liteJQ.git
RUN cd liteJQ && make all && ldconfig && make test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment