]> andersk Git - libyaml.git/blame_incremental - dockerfiles/ubuntu-16.04
Add maintainer field to dockerfiles
[libyaml.git] / dockerfiles / ubuntu-16.04
... / ...
CommitLineData
1# vim: ft=dockerfile
2FROM ubuntu:16.04
3MAINTAINER Ian Cordasco <graffatcolmingov@gmail.com>
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.024181 seconds and 5 git commands to generate.