Skip to content

Commit

Permalink
Moar experiments
Browse files Browse the repository at this point in the history
  • Loading branch information
oskarhane committed Sep 26, 2018
1 parent 1e8deeb commit bc80db6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 21 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
22 changes: 1 addition & 21 deletions now.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,4 @@
{
"name": "neo4j-browser",
"engines": {
"node": "^8.11.2"
},
"public": true,
"static": {
"public": "dist"
},
"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 bc80db6

Please sign in to comment.