libyaml/docker/ubuntu-16.04
Ingy döt Net a9a9b271fe Docker test file changes (added alpine testing)
Also reworked all the dockerfiles to be cleaner and consistent:

* Fixed some indentation
* Removed vim dependencies
* Collapsed RUN steps for less build layers
* Renamed dockerfiles/ to shorter and more adaptable docker/
2018-01-08 00:21:04 -08:00

25 lines
441 B
Docker

# vim: ft=dockerfile
FROM ubuntu:16.04
MAINTAINER Ian Cordasco <graffatcolmingov@gmail.com>
RUN apt-get update && \
apt-get install -y \
autoconf \
build-essential \
git \
libtool && \
rm -rf /var/lib/apt/lists/* && \
mkdir /libyaml
COPY . /libyaml/
WORKDIR /libyaml
ENV LD_LIBRARY_PATH=/libyaml/src/.libs
RUN ./bootstrap && \
./configure && \
make && \
make install
CMD ["bash"]