diff options
author | Tony Hansen <tony@att.com> | 2018-08-30 16:55:08 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-08-30 16:55:08 +0000 |
commit | c84e8030f5f53c2f38b11428a545cd6992a6ba02 (patch) | |
tree | 394554ffa5da5c996cf8adc614634692bb3274bb | |
parent | 2c6c4adf038cec7766b65191f125288f2a635560 (diff) | |
parent | 6760926586a2205cb6614d53144c424e3e06a92c (diff) |
Merge "Fix Docker image building misconceptions"
-rw-r--r-- | pom.xml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -196,16 +196,16 @@ limitations under the License. </resource> </resources> <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 install -y procps && apt-get install -y vim && apt-get clean all]]></run> + <run>chmod +x bin/*.sh</run> + <run><![CDATA[apt-get update && apt-get install -y --no-install-recommends logrotate procps && apt-get clean all]]></run> <run>chmod 0644 etc/logrotate.conf</run> </runs> <exposes> <expose>8080</expose> <expose>8443</expose> </exposes> - <entryPoint>bin/docker-entry.sh</entryPoint> + <cmd>bin/docker-entry.sh</cmd> </configuration> <executions> <execution> |