]> andersk Git - libyaml.git/blame - docker/fedora-25
Docker test file changes (added alpine testing)
[libyaml.git] / docker / fedora-25
CommitLineData
2fc6dc08
IN
1# vim: ft=dockerfile
2FROM fedora:25
3MAINTAINER Ian Cordasco <graffatcolmingov@gmail.com>
4
5# NOTE(sigmavirus24): We need "perl-core" here for the "prove" binary
6# required by the test-all Makefile target
7RUN dnf install -y \
a9a9b271
IN
8 automake \
9 gcc \
10 git \
11 make \
12 libtool \
13 perl-core && \
14 mkdir /libyaml
2fc6dc08 15
2fc6dc08
IN
16COPY . /libyaml/
17WORKDIR /libyaml
18
19ENV LD_LIBRARY_PATH=/libyaml/src/.libs
20
a9a9b271
IN
21RUN ./bootstrap && \
22 ./configure && \
23 make && \
24 make install
25
2fc6dc08 26CMD ["bash"]
This page took 0.04353 seconds and 5 git commands to generate.