]> andersk Git - libyaml.git/blob - docker/alpine-3.7
Docker test file changes (added alpine testing)
[libyaml.git] / docker / alpine-3.7
1 # vim: ft=dockerfile
2 FROM alpine:3.7
3 MAINTAINER Ingy döt Net <ingy@ingy.net>
4
5 RUN apk update && \
6     apk add --no-cache \
7         autoconf \
8         automake \
9         build-base \
10         cmake \
11         git \
12         libtool \
13         perl-dev && \
14     mkdir /libyaml
15
16 COPY . /libyaml/
17 WORKDIR /libyaml
18
19 ENV LD_LIBRARY_PATH=/libyaml/src/.libs
20
21 RUN ./bootstrap && \
22     ./configure && \
23     make && \
24     make install
25
26 CMD ["bash"]
This page took 0.10296 seconds and 5 git commands to generate.