Skip to content

Commit

Permalink
Fix error in CFL Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
eliaskosunen committed Nov 7, 2024
1 parent 53b31d8 commit 1f0d8f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .clusterfuzzlite/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ RUN git clone --depth 1 --branch 20240722.0 https://github.com/abseil/abseil-cpp
mkdir build && cd build && \
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_POSITION_INDEPENDENT_CODE=ON .. && \
cmake --build . --target install && \
cd ../.. && rm -rf $SRC/abseil-cpp
cd $SRC && rm -rf $SRC/abseil-cpp

RUN git clone --depth 1 --branch 2024-07-02 https://github.com/google/re2 $SRC/re2 && \
cd $SRC/re2 && \
mkdir build && cd build && \
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_POSITION_INDEPENDENT_CODE=ON .. && \
cmake --build . --target install && \
cd ../.. && rm -rf $SRC/re2 \
cd $SRC && rm -rf $SRC/re2 \

COPY . $SRC/scnlib
WORKDIR $SRC/scnlib
Expand Down

0 comments on commit 1f0d8f3

Please sign in to comment.