You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gm...@apache.org on 2017/04/28 19:57:39 UTC

qpid-dispatch git commit: DISPATCH-756 - Fixed the Fedora dockerfile to use libuv and libwebsockets

Repository: qpid-dispatch
Updated Branches:
  refs/heads/master 74d1e3026 -> a00781c01


DISPATCH-756 - Fixed the Fedora dockerfile to use libuv and libwebsockets


Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/a00781c0
Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/a00781c0
Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/a00781c0

Branch: refs/heads/master
Commit: a00781c01461d7dc87f02742e54f5d47cabbf5fd
Parents: 74d1e30
Author: Ganesh Murthy <gm...@redhat.com>
Authored: Fri Apr 28 15:57:09 2017 -0400
Committer: Ganesh Murthy <gm...@redhat.com>
Committed: Fri Apr 28 15:57:09 2017 -0400

----------------------------------------------------------------------
 dockerfiles/Dockerfile-fedora | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/a00781c0/dockerfiles/Dockerfile-fedora
----------------------------------------------------------------------
diff --git a/dockerfiles/Dockerfile-fedora b/dockerfiles/Dockerfile-fedora
index 954428c..179ea13 100644
--- a/dockerfiles/Dockerfile-fedora
+++ b/dockerfiles/Dockerfile-fedora
@@ -30,10 +30,10 @@ FROM fedora:latest
 MAINTAINER "dev@qpid.apache.org"
 
 # Install all the required packages. Some in this list were picked off from proton's INSTALL.md (https://github.com/apache/qpid-proton/blob/master/INSTALL.md) and the rest are from dispatch (https://github.com/apache/qpid-dispatch/blob/master/README)
-RUN dnf -y install gcc cmake libuuid-devel openssl-devel cyrus-sasl-devel cyrus-sasl-plain cyrus-sasl-gssapi cyrus-sasl-md5 swig python-devel ruby-devel php-devel perl-devel java-1.8.0-openjdk-devel git make doxygen valgrind emacs
+RUN dnf -y install gcc cmake libuuid-devel openssl-devel cyrus-sasl-devel cyrus-sasl-plain cyrus-sasl-gssapi cyrus-sasl-md5 swig python-devel java-1.8.0-openjdk-devel git make doxygen valgrind emacs libuv libuv-devel libwebsockets-devel
 
 # Create a main directory and clone the qpid-proton repo from github
-RUN mkdir /main && cd /main && git clone https://github.com/apache/qpid-proton.git && cd /main/qpid-proton && mkdir /main/qpid-proton/build
+RUN mkdir /main && cd /main && git clone https://git-wip-us.apache.org/repos/asf/qpid-proton.git  && cd /main/qpid-proton && mkdir /main/qpid-proton/build
 
 WORKDIR /main/qpid-proton/build
 
@@ -41,7 +41,7 @@ WORKDIR /main/qpid-proton/build
 RUN cmake .. -DSYSINSTALL_BINDINGS=ON -DCMAKE_INSTALL_PREFIX=/usr -DSYSINSTALL_PYTHON=ON && make install
 
 # Clone the qpid-dispatch git repo
-RUN cd /main && git clone https://github.com/apache/qpid-dispatch.git && mkdir /main/qpid-dispatch/build
+RUN cd /main && git clone https://git-wip-us.apache.org/repos/asf/qpid-dispatch.git && mkdir /main/qpid-dispatch/build
 
 WORKDIR /main/qpid-dispatch/build
 RUN cmake .. -DCMAKE_INSTALL_PREFIX=/usr && make install
@@ -50,4 +50,5 @@ RUN cmake .. -DCMAKE_INSTALL_PREFIX=/usr && make install
 # RUN ctest -VV
 
 # Start the dispatch router
-CMD ["qdrouterd"]
\ No newline at end of file
+CMD ["qdrouterd"]
+# CMD ["/bin/bash"]


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org