aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVijay VK <vv770d@att.com>2018-07-17 18:12:25 +0100
committerVENKATESH KUMAR <vv770d@att.com>2018-07-18 19:02:40 -0400
commitfbcb850dde87e8750fc09e1e8c9f8584e496b654 (patch)
treeada633bb63be6e75f2d12522c3db2977dda7355f
parentb343343f1efd0df9196b27e9e65b783e5e954112 (diff)
add ps and other tools into docker build
Change-Id: I3e5c4f0600c527febe49f6b97229d756413e2f74 Signed-off-by: VENKATESH KUMAR <vv770d@att.com> Issue-ID: DCAEGEN2-623
-rw-r--r--pom.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index c87a9d24..d3a3c2e8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -205,7 +205,7 @@ limitations under the License.
<runs>
<run>chmod +x bin/*.sh</run> <!-- Maven is loosing file permissions during artifacts copy -->
<run>
- <![CDATA[apt-get update && apt-get install -y --no-install-recommends logrotate && apt-get clean all]]>
+ <![CDATA[apt-get update && apt-get install -y --no-install-recommends logrotate && apt-get install -y procps && apt-get install -y vim && apt-get clean all]]>
</run>
<run>chmod 0644 etc/logrotate.conf</run>
</runs>
@@ -213,7 +213,7 @@ limitations under the License.
<expose>8080</expose>
<expose>8443</expose>
</exposes>
- <cmd>bin/docker-entry.sh</cmd>
+ <entryPoint>bin/docker-entry.sh</entryPoint>
</configuration>
<executions>