added Dockerfile
This commit is contained in:
parent
2bb0c7eb4b
commit
53f264e63b
|
@ -0,0 +1,20 @@
|
||||||
|
version: 2
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
working_directory: ~/app
|
||||||
|
docker:
|
||||||
|
- image: circleci/node:8
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- restore_cache:
|
||||||
|
key: dependency-cache-{{ checksum "package-lock.json" }}
|
||||||
|
- run:
|
||||||
|
name: npm-install
|
||||||
|
command: npm install
|
||||||
|
- save_cache:
|
||||||
|
key: dependency-cache-{{ checksum "package-lock.json" }}
|
||||||
|
paths:
|
||||||
|
- .node_modules
|
||||||
|
- run:
|
||||||
|
name: test
|
||||||
|
command: npm test
|
|
@ -0,0 +1,4 @@
|
||||||
|
node_modules
|
||||||
|
.git
|
||||||
|
.DS_Store
|
||||||
|
static
|
|
@ -0,0 +1,9 @@
|
||||||
|
FROM node:8-alpine
|
||||||
|
|
||||||
|
COPY . /app
|
||||||
|
WORKDIR /app
|
||||||
|
RUN mkdir static
|
||||||
|
RUN npm install
|
||||||
|
|
||||||
|
EXPOSE 1443
|
||||||
|
CMD ["npm", "start"]
|
|
@ -0,0 +1,12 @@
|
||||||
|
version: "3"
|
||||||
|
services:
|
||||||
|
web:
|
||||||
|
build: .
|
||||||
|
links:
|
||||||
|
- redis
|
||||||
|
ports:
|
||||||
|
- "1443:1443"
|
||||||
|
environment:
|
||||||
|
- P2P_REDIS_HOST=redis
|
||||||
|
redis:
|
||||||
|
image: redis:alpine
|
|
@ -0,0 +1,9 @@
|
||||||
|
Environment Variables:
|
||||||
|
|
||||||
|
P2P_S3_BUCKET - the S3 bucket name
|
||||||
|
P2P_REDIS_HOST - host name of the redis server
|
||||||
|
NODE_ENV - production
|
||||||
|
|
||||||
|
Example
|
||||||
|
|
||||||
|
docker run --net=host -e 'NODE_ENV=production' -e 'P2P_S3_BUCKET=testpilot-p2p-dev' -e 'P2P_REDIS_HOST=dyf9s2r4vo3.bolxr4.0001.usw2.cache.amazonaws.com'
|
File diff suppressed because it is too large
Load Diff
|
@ -49,7 +49,7 @@
|
||||||
"lint:css": "stylelint 'public/*.css'",
|
"lint:css": "stylelint 'public/*.css'",
|
||||||
"lint:html": "htmllint 'views/*.handlebars'",
|
"lint:html": "htmllint 'views/*.handlebars'",
|
||||||
"lint:js": "eslint .",
|
"lint:js": "eslint .",
|
||||||
"start": "watchify frontend/src/main.js -o public/bundle.js -d | cross-env NODE_ENV=production node server/portal_server.js",
|
"start": "browserify frontend/src/main.js -o public/bundle.js -d | cross-env NODE_ENV=production node server/portal_server.js",
|
||||||
"test": "mocha"
|
"test": "mocha"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue