]> andersk Git - libyaml.git/blame - dockerfiles/ubuntu-14.04
Added an example of using a global tag
[libyaml.git] / dockerfiles / ubuntu-14.04
CommitLineData
80f22796
IC
1# vim: ft=dockerfile
2FROM ubuntu:14.04
3
4RUN 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
13RUN mkdir /libyaml
14COPY . /libyaml/
15WORKDIR /libyaml
16
17RUN ./bootstrap
18RUN ./configure
19RUN make
20RUN make install
21CMD ["bash"]
This page took 0.047823 seconds and 5 git commands to generate.