Skip to content

Commit

Permalink
Update langs/jq/Dockerfile (code-golf#1394)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yewzir authored Sep 20, 2024
1 parent 87e0c14 commit 6b8b80d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions langs/jq/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ ENV VER=1.7.1

RUN apk add --no-cache build-base curl

RUN curl -L https://github.com/jqlang/jq/releases/download/jq-$VER/jq-$VER.tar.gz | tar xz --strip-components=1
RUN curl -L https://github.com/jqlang/jq/releases/download/jq-$VER/jq-$VER.tar.gz \
| tar xz --strip-components 1

RUN ./configure --with-oniguruma=builtin \
&& make LDFLAGS='-all-static' -j`nproc`
RUN ./configure \
--with-oniguruma=builtin \
&& make LDFLAGS="-all-static" -j`nproc`

FROM codegolf/lang-base-no-proc

Expand Down

0 comments on commit 6b8b80d

Please sign in to comment.