diff options
author | Google AutoFuzz Team <security-tps@google.com> | 2019-08-28 14:56:46 -0400 |
---|---|---|
committer | jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> | 2019-08-28 11:56:46 -0700 |
commit | fb35c82348cf982b19ca2db00fd98cea4bb0b0f4 (patch) | |
tree | b558c57c46d8bc5897f8b162747ac03911819206 /projects/matio/Dockerfile | |
parent | 5043a69d6192a7e7b31b09af2131252a0d5d2425 (diff) |
[Matio] Add matio project (#2761)
Diffstat (limited to 'projects/matio/Dockerfile')
-rw-r--r-- | projects/matio/Dockerfile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/projects/matio/Dockerfile b/projects/matio/Dockerfile new file mode 100644 index 00000000..cc727f55 --- /dev/null +++ b/projects/matio/Dockerfile @@ -0,0 +1,23 @@ +# Copyright 2019 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 t-beu@users.sourceforge.net +RUN apt-get update && apt-get install -y make autoconf automake libtool +RUN git clone --depth 1 git://git.code.sf.net/p/matio/matio matio +WORKDIR matio +COPY build.sh $SRC/ +COPY *.cc *.h $SRC/ |