diff options
author | Jack Lucas <jflucas@research.att.com> | 2017-05-10 01:48:41 +0000 |
---|---|---|
committer | Jack Lucas <jflucas@research.att.com> | 2017-05-10 01:48:41 +0000 |
commit | ff6ba434b6d91b6a4a4e9b3a7fbb8cadced229ad (patch) | |
tree | 8ae919ab8d1b174944bd6bea6602ce29153be2f6 /Dockerfile | |
parent | 0806707cbc2dd6311228facabf0a6052862c51c7 (diff) |
Post-R1 API & other updates.
Change-Id: Id0e2e15b95a5713a25a746534fc40b56599a5f06
Signed-off-by: Jack Lucas <jflucas@research.att.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -9,10 +9,11 @@ RUN mkdir -p ${INSROOT}/${APPUSER}/lib \ COPY *.js ${INSROOT}/${APPUSER}/ COPY package.json ${INSROOT}/${APPUSER}/ COPY lib ${INSROOT}/${APPUSER}/lib/ -COPY etc/config.json.development ${INSROOT}/${APPUSER}/etc/config.json +COPY etc/config.json.docker ${INSROOT}/${APPUSER}/etc/config.json COPY etc/log4js.json ${INSROOT}/${APPUSER}/etc/log4js.json WORKDIR ${INSROOT}/${APPUSER} RUN npm install --production && chown -R ${APPUSER}:${APPUSER} ${INSROOT}/${APPUSER} && npm remove -g npm USER ${APPUSER} VOLUME ${INSROOT}/${APPUSER}/log +EXPOSE 8443 ENTRYPOINT ["/usr/local/bin/node", "dispatcher.js"] |