Created
February 26, 2024 23:51
-
-
Save wader/43dfc4d92f671d7a5872e7d463cfd597 to your computer and use it in GitHub Desktop.
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 characters
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