Dockerfile 382 Bytes
FROM debian:jessie

MAINTAINER Liblouis Maintainers "liblouis-liblouisxml@freelists.org"

RUN apt-get update
RUN apt-get install -y make autoconf automake libtool pkg-config texinfo python python-pip curl
RUN pip install nose

# liblouis
ADD . /tmp/liblouis
WORKDIR /tmp/liblouis
RUN ./autogen.sh
RUN ./configure --enable-ucs4
# RUN make clean
RUN make
RUN make install
RUN ldconfig