Skip to content

Commit

Permalink
[llhttp] Use the base-builer provided JS install script
Browse files Browse the repository at this point in the history
Replaces the third party JavaScript toolchain install script with
the installation script included in OSS-Fuzz.
  • Loading branch information
DaveLak committed Jan 12, 2025
1 parent 37edccc commit 4504217
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions projects/llhttp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@
################################################################################

FROM gcr.io/oss-fuzz-base/base-builder
RUN curl -sL https://deb.nodesource.com/setup_22.x -o nodesource_setup.sh \
&& bash nodesource_setup.sh
RUN apt-get update \
&& apt-get install -y nodejs make autoconf automake libtool
&& apt-get install -y make autoconf automake libtool
RUN install_javascript.sh
RUN git clone --depth 1 https://github.com/nodejs/llhttp $SRC/llhttp
COPY build.sh $SRC/
WORKDIR $SRC/llhttp

0 comments on commit 4504217

Please sign in to comment.