Skip to content

Commit

Permalink
Activate now integration for PR:s
Browse files Browse the repository at this point in the history
  • Loading branch information
oskarhane committed Sep 26, 2018
1 parent 504dcf8 commit 0e5398b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 18 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM node:8-jessie

WORKDIR /usr/src

# Install dependencies
COPY package.json yarn.lock ./
RUN yarn

# Copy the relevant files to the working directory
COPY . .

# Build and export the app
RUN yarn build
RUN cp -R dist /public
19 changes: 1 addition & 18 deletions now.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
{
"name": "neo4j-browser",
"engines": {
"node": "^8.11.2"
},
"public": true,
"files": [
"scripts/",
"src/",
".babelrc",
".eslintignore",
".eslintrc.json",
".yarnrc",
"cypress.json",
"jsconfig.json",
"postcss.config.js",
"webpack.config.js",
"yarn.lock",
"README.md"
]
"type": "static"
}

0 comments on commit 0e5398b

Please sign in to comment.