aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/irssi/Dockerfile
diff options
context:
space:
mode:
authorGravatar Joseph Bisch <joseph.bisch@gmail.com>2017-01-14 14:27:40 -0500
committerGravatar Abhishek Arya <inferno@chromium.org>2017-01-14 11:27:40 -0800
commitf51cd3f99e8026f3a44e1ac03db1303cca99b180 (patch)
tree63ae2f41d0567d75b01adb3cf749311dbdb0a6e7 /projects/irssi/Dockerfile
parente945f6532fac42975468c657c3a6b368d2d0effa (diff)
Add initial build.sh and Dockerfile for irssi (#279)
Diffstat (limited to 'projects/irssi/Dockerfile')
-rw-r--r--projects/irssi/Dockerfile23
1 files changed, 23 insertions, 0 deletions
diff --git a/projects/irssi/Dockerfile b/projects/irssi/Dockerfile
new file mode 100644
index 00000000..5bb502b6
--- /dev/null
+++ b/projects/irssi/Dockerfile
@@ -0,0 +1,23 @@
+# Copyright 2016 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 ossfuzz/base-builder
+MAINTAINER joseph.bisch@gmail.com
+RUN apt-get install -y make autoconf automake libtool pkg-config libglib2.0-dev libncurses5-dev libssl-dev openssl lynx
+RUN git clone https://github.com/irssi/irssi
+
+WORKDIR irssi
+COPY build.sh $SRC/