]> andersk Git - libyaml.git/blame - dockerfiles/ubuntu-14.04
Get tests passing on Docker
[libyaml.git] / dockerfiles / ubuntu-14.04
CommitLineData
80f22796
IC
1# vim: ft=dockerfile
2FROM ubuntu:14.04
87a90e0b 3MAINTAINER Ian Cordasco <graffatcolmingov@gmail.com>
80f22796
IC
4
5RUN apt-get update && \
6 apt-get install -y \
7 autoconf \
8 build-essential \
9 git \
10 libtool \
11 vim && \
12 rm -rf /var/lib/apt/lists/*
13
14RUN mkdir /libyaml
15COPY . /libyaml/
16WORKDIR /libyaml
17
048095f0
IN
18ENV LD_LIBRARY_PATH=/libyaml/src/.libs
19
80f22796
IC
20RUN ./bootstrap
21RUN ./configure
22RUN make
23RUN make install
24CMD ["bash"]
This page took 0.046617 seconds and 5 git commands to generate.