]> andersk Git - libyaml.git/commitdiff
Add fedora dockerfile from PR #43
authorIngy döt Net <ingy@ingy.net>
Fri, 30 Dec 2016 22:41:06 +0000 (16:41 -0600)
committerIngy döt Net <ingy@ingy.net>
Fri, 30 Dec 2016 22:41:06 +0000 (16:41 -0600)
dockerfiles/fedora-25 [new file with mode: 0644]

diff --git a/dockerfiles/fedora-25 b/dockerfiles/fedora-25
new file mode 100644 (file)
index 0000000..ae34448
--- /dev/null
@@ -0,0 +1,25 @@
+# vim: ft=dockerfile
+FROM fedora:25
+MAINTAINER Ian Cordasco <graffatcolmingov@gmail.com>
+
+# NOTE(sigmavirus24): We need "perl-core" here for the "prove" binary
+# required by the test-all Makefile target
+RUN dnf install -y \
+    automake \
+    gcc \
+    git \
+    make \
+    libtool \
+    perl-core
+
+RUN mkdir /libyaml
+COPY . /libyaml/
+WORKDIR /libyaml
+
+ENV LD_LIBRARY_PATH=/libyaml/src/.libs
+
+RUN ./bootstrap
+RUN ./configure
+RUN make
+RUN make install
+CMD ["bash"]
This page took 0.033491 seconds and 5 git commands to generate.