]> andersk Git - libyaml.git/blob - dockerfiles/ubuntu-14.04
ffb7c6b8991be588287c8d37916d8a296e1fb3b7
[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         software-properties-common \
8         python-software-properties && \
9     add-apt-repository ppa:git-core/ppa && \
10     apt-get update && \
11     apt-get install -y \
12         autoconf \
13         build-essential \
14         git \
15         libtool \
16         vim && \
17     rm -rf /var/lib/apt/lists/*
18
19 RUN mkdir /libyaml
20 COPY . /libyaml/
21 WORKDIR /libyaml
22
23 ENV LD_LIBRARY_PATH=/libyaml/src/.libs
24
25 RUN ./bootstrap
26 RUN ./configure
27 RUN make
28 RUN make install
29 CMD ["bash"]
This page took 0.08597 seconds and 3 git commands to generate.