libyaml/docker/alpine-3.7
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

27 lines
421 B
Docker

# vim: ft=dockerfile
FROM alpine:3.7
MAINTAINER Ingy döt Net <ingy@ingy.net>
RUN apk update && \
apk add --no-cache \
autoconf \
automake \
build-base \
cmake \
git \
libtool \
perl-dev && \
mkdir /libyaml
COPY . /libyaml/
WORKDIR /libyaml
ENV LD_LIBRARY_PATH=/libyaml/src/.libs
RUN ./bootstrap && \
./configure && \
make && \
make install
CMD ["bash"]