aboutsummaryrefslogtreecommitdiff
path: root/bridge/Dockerfile
blob: 5db05345cbdb91cc3a23a72fccd3f825aaf0a1b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM keymetrics/pm2:latest-alpine

# Bundle APP files
COPY ../public/bridge.js .
COPY ecosystem.config.js .

# Install app dependencies
ENV NPM_CONFIG_LOGLEVEL warn
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" ]