aboutsummaryrefslogtreecommitdiff
path: root/bridge/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'bridge/Dockerfile')
-rw-r--r--bridge/Dockerfile9
1 files changed, 3 insertions, 6 deletions
diff --git a/bridge/Dockerfile b/bridge/Dockerfile
index 5db05345..8fa8f061 100644
--- a/bridge/Dockerfile
+++ b/bridge/Dockerfile
@@ -1,8 +1,8 @@
-FROM keymetrics/pm2:latest-alpine
+FROM keymetrics/pm2:18-alpine
# Bundle APP files
-COPY ../public/bridge.js .
-COPY ecosystem.config.js .
+COPY public/bridge.js .
+COPY bridge/ecosystem.config.js .
# Install app dependencies
ENV NPM_CONFIG_LOGLEVEL warn
@@ -11,7 +11,4 @@ ENV DEBUG http
# Expose the listening port of your app
EXPOSE 8081
-# Show current folder structure in logs
-RUN ls -al -R
-
CMD [ "pm2-runtime", "start", "ecosystem.config.js" ]