Created
February 26, 2024 23:51
Revisions
-
wader created this gist
Feb 26, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ 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