This is an automated email from the ASF dual-hosted git repository.
gmurthy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git
The following commit(s) were added to refs/heads/master by this push:
new e133692 NO-JIRA - 1. Replaced CMD with ENTRYPOINT 2. Fixed comment
that had wrong install location 3. Fixed name of Dockerfile in comment
e133692 is described below
commit e13369210e6eb668278b3267d3d546ce284af8b6
Author: Ganesh Murthy <[email protected]>
AuthorDate: Mon Feb 18 22:24:32 2019 -0500
NO-JIRA - 1. Replaced CMD with ENTRYPOINT
2. Fixed comment that had wrong install location
3. Fixed name of Dockerfile in comment
---
Dockerfile | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/Dockerfile b/Dockerfile
index ad516de..097d529 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -19,12 +19,12 @@
# Downloads, builds and installs apache proton and qpid dispatch on Centos and
starts the dispatch router
# /main is the top level folder under which proton (/main/qpid-proton/) and
dispatch (/main/qpid-dispatch) source code is downloaded from github
-# /usr/local/lib64 is the folder in which the proton artifacts are installed.
-# /usr/local/sbin is the folder in which dispatch executable installed
+# /usr/lib64 is the folder in which the proton artifacts are installed.
+# /usr/sbin is the folder in which dispatch executable installed
# Copy this docker file to your local folder. Build the docker image like this:
-# > sudo docker build -t <username>/dispatch --file=Dockerfile-centos .
+# > sudo docker build -t <username>/dispatch --file=Dockerfile .
# "<username>/dispatch" is a convention, you can call it whatever you want
@@ -67,5 +67,5 @@ RUN cmake .. -DCMAKE_INSTALL_PREFIX=/usr && make install
# RUN ctest -VV
# Start the dispatch router
-CMD ["qdrouterd"]
+ENTRYPOINT ["qdrouterd"]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]