aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/tmux/Dockerfile
diff options
context:
space:
mode:
authorGravatar Sergey Nizovtsev <snizovtsev@gmail.com>2020-11-09 17:55:00 +0300
committerGravatar GitHub <noreply@github.com>2020-11-09 06:55:00 -0800
commita0528670aace2fade32ab5b40cefa133ff70a4b7 (patch)
treedb995ce38061aaaa2ccee547846a74ef4bc13a25 /projects/tmux/Dockerfile
parent24f263f32df4cbb307f1ceb764c0c3c97fdd3f9e (diff)
[tmux] Initial integration (#4593)
Signed-off-by: Sergey Nizovtsev
Diffstat (limited to 'projects/tmux/Dockerfile')
-rw-r--r--projects/tmux/Dockerfile24
1 files changed, 24 insertions, 0 deletions
diff --git a/projects/tmux/Dockerfile b/projects/tmux/Dockerfile
new file mode 100644
index 00000000..ed3e14ed
--- /dev/null
+++ b/projects/tmux/Dockerfile
@@ -0,0 +1,24 @@
+# Copyright 2020 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
+RUN apt-get update && apt-get install -y autoconf automake bison pkg-config \
+ libevent-dev ncurses-dev
+
+RUN git clone --depth 1 https://github.com/snizovtsev/tmux.git
+RUN git clone --depth 1 https://github.com/snizovtsev/tmux-fuzzing-corpus.git
+WORKDIR tmux
+COPY build.sh $SRC/