From 191b4f6009b066363de22553c269c3a11e717f16 Mon Sep 17 00:00:00 2001 From: zlowram Date: Thu, 7 May 2020 07:09:12 +0200 Subject: Full integration for PcapPlusPlus (#3759) --- projects/pcapplusplus/Dockerfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 projects/pcapplusplus/Dockerfile (limited to 'projects/pcapplusplus/Dockerfile') diff --git a/projects/pcapplusplus/Dockerfile b/projects/pcapplusplus/Dockerfile new file mode 100644 index 00000000..c015f2b7 --- /dev/null +++ b/projects/pcapplusplus/Dockerfile @@ -0,0 +1,30 @@ +# Copyright 2020 Google Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +################################################################################ + +FROM gcr.io/oss-fuzz-base/base-builder +MAINTAINER zlowram@gmail.com + +RUN apt-get update && apt-get install -y gcc g++ make cmake flex bison +RUN git clone https://github.com/seladb/PcapPlusPlus PcapPlusPlus + +# Get tcpdump's test pcaps as seed corpus +RUN git clone --depth=1 https://github.com/the-tcpdump-group/tcpdump.git tcpdump +RUN git clone --depth=1 https://github.com/the-tcpdump-group/libpcap.git libpcap + +WORKDIR PcapPlusPlus + +COPY build.sh $SRC +COPY *.options $SRC -- cgit v1.2.3