]> andersk Git - libyaml.git/blob - dockerfiles/ubuntu-14.04
b24688360cd2909fe87cd1ccd24fdd15d19c4ea1
[libyaml.git] / dockerfiles / ubuntu-14.04
1 # vim: ft=dockerfile
2 FROM ubuntu:14.04
3 MAINTAINER Ian Cordasco <graffatcolmingov@gmail.com>
4
5 RUN 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
14 RUN mkdir /libyaml
15 COPY . /libyaml/
16 WORKDIR /libyaml
17
18 ENV LD_LIBRARY_PATH=/libyaml/src/.libs
19
20 RUN ./bootstrap
21 RUN ./configure
22 RUN make
23 RUN make install
24 CMD ["bash"]
This page took 0.030875 seconds and 3 git commands to generate.