Skip to content

Instantly share code, notes, and snippets.

@wader
Created February 26, 2024 23:51

Revisions

  1. wader created this gist Feb 26, 2024.
    16 changes: 16 additions & 0 deletions Dockerfile
    Original 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