summaryrefslogtreecommitdiff
path: root/docker/ubuntu-14.04
diff options
context:
space:
mode:
Diffstat (limited to 'docker/ubuntu-14.04')
-rw-r--r--docker/ubuntu-14.0429
1 files changed, 29 insertions, 0 deletions
diff --git a/docker/ubuntu-14.04 b/docker/ubuntu-14.04
new file mode 100644
index 000000000000..6a2b1346fca1
--- /dev/null
+++ b/docker/ubuntu-14.04
@@ -0,0 +1,29 @@
+# vim: ft=dockerfile
+FROM ubuntu:14.04
+MAINTAINER Ian Cordasco <graffatcolmingov@gmail.com>
+
+RUN apt-get update && \
+ apt-get install -y \
+ software-properties-common \
+ python-software-properties && \
+ add-apt-repository ppa:git-core/ppa && \
+ 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"]