aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 68811e3..744bf65 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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"]