]> andersk Git - libyaml.git/blob - dockerfiles/ubuntu-16.04
Add maintainer field to dockerfiles
[libyaml.git] / dockerfiles / ubuntu-16.04
1 # vim: ft=dockerfile
2 FROM ubuntu:16.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 RUN ./bootstrap
19 RUN ./configure
20 RUN make
21 RUN make install
22 CMD ["bash"]
This page took 0.050035 seconds and 5 git commands to generate.