aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/libheif/Dockerfile
diff options
context:
space:
mode:
authorGravatar Joachim Bauch <mail@joachim-bauch.de>2019-03-06 15:28:00 +0100
committerGravatar Max Moroz <dor3s1@gmail.com>2019-03-06 06:28:00 -0800
commit27b37d514a8ff66890311cbe31f0244712f41934 (patch)
treefe142c95173c51c9262b736f42c86b826ec46eee /projects/libheif/Dockerfile
parent80634bf24d432b9466f1eba348ccfc29d5c15132 (diff)
[libheif] Add libheif (#2213)
Diffstat (limited to 'projects/libheif/Dockerfile')
-rw-r--r--projects/libheif/Dockerfile51
1 files changed, 51 insertions, 0 deletions
diff --git a/projects/libheif/Dockerfile b/projects/libheif/Dockerfile
new file mode 100644
index 00000000..a89584d6
--- /dev/null
+++ b/projects/libheif/Dockerfile
@@ -0,0 +1,51 @@
+# 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 mail@joachim-bauch.de
+
+RUN apt-get update && apt-get install -y \
+ autoconf \
+ automake \
+ build-essential \
+ cmake \
+ libtool \
+ make \
+ mercurial \
+ pkg-config \
+ yasm
+
+RUN git clone \
+ --depth 1 \
+ --branch master \
+ https://github.com/strukturag/libde265.git \
+ libde265
+
+RUN hg clone \
+ --branch stable \
+ http://hg.videolan.org/x265 \
+ x265
+
+RUN git clone \
+ --depth 1 \
+ --branch master \
+ https://github.com/strukturag/libheif.git \
+ libheif
+
+WORKDIR libheif
+
+COPY build.sh $SRC/