]> andersk Git - libyaml.git/blame - dockerfiles/ubuntu-14.04
Fix problems in CI failures (travis and semaphore)
[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 && \
aa10f657
IN
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 && \
80f22796
IC
11 apt-get install -y \
12 autoconf \
13 build-essential \
14 git \
15 libtool \
16 vim && \
17 rm -rf /var/lib/apt/lists/*
18
19RUN mkdir /libyaml
20COPY . /libyaml/
21WORKDIR /libyaml
22
048095f0
IN
23ENV LD_LIBRARY_PATH=/libyaml/src/.libs
24
80f22796
IC
25RUN ./bootstrap
26RUN ./configure
27RUN make
28RUN make install
29CMD ["bash"]
This page took 0.122956 seconds and 5 git commands to generate.