aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/numpy/Dockerfile
diff options
context:
space:
mode:
authorGravatar DavidKorczynski <david@adalogics.com>2022-07-06 02:02:28 +0100
committerGravatar GitHub <noreply@github.com>2022-07-06 11:02:28 +1000
commitbcf1fcd990c17903d443113083daeed8b46b297e (patch)
treeed40843bc1cfc4a37357fccb66a4a3b25ad9d8eb /projects/numpy/Dockerfile
parentd2cf83cffe1ed83ef71ad9e6a2e03603d062365b (diff)
numpy: initial integration (#7681)
* numpy: initial integration Depends on https://github.com/google/oss-fuzz/pull/7680 * Update project.yaml to match https://github.com/google/oss-fuzz/pull/7698 * add maintainer mail
Diffstat (limited to 'projects/numpy/Dockerfile')
-rw-r--r--projects/numpy/Dockerfile21
1 files changed, 21 insertions, 0 deletions
diff --git a/projects/numpy/Dockerfile b/projects/numpy/Dockerfile
new file mode 100644
index 00000000..e31785a9
--- /dev/null
+++ b/projects/numpy/Dockerfile
@@ -0,0 +1,21 @@
+# Copyright 2022 Google LLC
+#
+# 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-python
+RUN pip3 install cython
+RUN git clone https://github.com/numpy/numpy && cd numpy && git submodule update --init
+WORKDIR $SRC
+COPY *.py build.sh $SRC/