]> andersk Git - libyaml.git/blame - dockerfiles/ubuntu-14.04
Add maintainer field to dockerfiles
[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
18RUN ./bootstrap
19RUN ./configure
20RUN make
21RUN make install
22CMD ["bash"]
This page took 0.042768 seconds and 5 git commands to generate.