summaryrefslogtreecommitdiff
path: root/docker/ubuntu-16.04
diff options
context:
space:
mode:
Diffstat (limited to 'docker/ubuntu-16.04')
-rw-r--r--docker/ubuntu-16.0424
1 files changed, 24 insertions, 0 deletions
diff --git a/docker/ubuntu-16.04 b/docker/ubuntu-16.04
new file mode 100644
index 0000000..87b7afd
--- /dev/null
+++ b/docker/ubuntu-16.04
@@ -0,0 +1,24 @@
+# vim: ft=dockerfile
+FROM ubuntu:16.04
+MAINTAINER Ian Cordasco <graffatcolmingov@gmail.com>
+
+RUN apt-get update && \
+ apt-get install -y \
+ autoconf \
+ build-essential \
+ git \
+ libtool && \
+ rm -rf /var/lib/apt/lists/* && \
+ mkdir /libyaml
+
+COPY . /libyaml/
+WORKDIR /libyaml
+
+ENV LD_LIBRARY_PATH=/libyaml/src/.libs
+
+RUN ./bootstrap && \
+ ./configure && \
+ make && \
+ make install
+
+CMD ["bash"]