]> andersk Git - libyaml.git/blob - dockerfiles/ubuntu-16.04
Start working with multiple Dockerfiles
[libyaml.git] / dockerfiles / ubuntu-16.04
1 # vim: ft=dockerfile
2 FROM ubuntu:16.04
3
4 RUN apt-get update && \
5     apt-get install -y \
6         autoconf \
7         build-essential \
8         git \
9         libtool \
10         vim && \
11     rm -rf /var/lib/apt/lists/*
12
13 RUN mkdir /libyaml
14 COPY . /libyaml/
15 WORKDIR /libyaml
16
17 RUN ./bootstrap
18 RUN ./configure
19 RUN make
20 RUN make install
21 CMD ["bash"]
This page took 0.035485 seconds and 5 git commands to generate.