]> andersk Git - libyaml.git/blobdiff - docker/fedora-25
Docker test file changes (added alpine testing)
[libyaml.git] / docker / fedora-25
similarity index 61%
rename from dockerfiles/fedora-25
rename to docker/fedora-25
index ae344481d898a6f7bab1b751bf93ac2cf739fb28..36e58ab0186d11f4b94656e7cb253d2a52b613c1 100644 (file)
@@ -5,21 +5,22 @@ 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
+        automake \
+        gcc \
+        git \
+        make \
+        libtool \
+        perl-core && \
+    mkdir /libyaml
 
-RUN mkdir /libyaml
 COPY . /libyaml/
 WORKDIR /libyaml
 
 ENV LD_LIBRARY_PATH=/libyaml/src/.libs
 
-RUN ./bootstrap
-RUN ./configure
-RUN make
-RUN make install
+RUN ./bootstrap && \
+    ./configure && \
+    make && \
+    make install
+
 CMD ["bash"]
This page took 0.032659 seconds and 4 git commands to generate.