aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/pcapplusplus/Dockerfile
diff options
context:
space:
mode:
authorGravatar zlowram <zlowram@gmail.com>2020-05-07 07:09:12 +0200
committerGravatar GitHub <noreply@github.com>2020-05-06 22:09:12 -0700
commit191b4f6009b066363de22553c269c3a11e717f16 (patch)
tree85e1c6bce177be5b15d1501b77e21d52d4a260d7 /projects/pcapplusplus/Dockerfile
parent366c2ba367d2c401ab58fcd776be963aa341d058 (diff)
Full integration for PcapPlusPlus (#3759)
Diffstat (limited to 'projects/pcapplusplus/Dockerfile')
-rw-r--r--projects/pcapplusplus/Dockerfile30
1 files changed, 30 insertions, 0 deletions
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