aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/libspng/Dockerfile
diff options
context:
space:
mode:
authorGravatar Randy <33860634+randy408@users.noreply.github.com>2019-01-08 21:04:07 +0200
committerGravatar Max Moroz <dor3s1@gmail.com>2019-01-08 11:04:07 -0800
commitea0504c8829953433ed1b50f1e8355de5d0a07bb (patch)
tree613dd9e9e13808605ed91dd7d863a4020650f823 /projects/libspng/Dockerfile
parent8b1e8b020ee748960cb247741c71dc5fa120b636 (diff)
[libspng] Integrate libspng (#1664)
* Integrate libspng * update copyright year
Diffstat (limited to 'projects/libspng/Dockerfile')
-rw-r--r--projects/libspng/Dockerfile28
1 files changed, 28 insertions, 0 deletions
diff --git a/projects/libspng/Dockerfile b/projects/libspng/Dockerfile
new file mode 100644
index 00000000..55c4c2ed
--- /dev/null
+++ b/projects/libspng/Dockerfile
@@ -0,0 +1,28 @@
+# Copyright 2018 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 randy408@protonmail.com
+
+RUN apt-get update && \
+ apt-get install -y -t xenial-backports meson ninja-build && \
+ apt-get install -y pkg-config zlib1g-dev
+
+RUN git clone --depth 1 https://gitlab.com/randy408/libspng.git
+
+WORKDIR libspng
+COPY build.sh $SRC/