-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #828 from oskarhane/no-caching-guides
Send cache busting headers with remote guides requests
- Loading branch information
Showing
4 changed files
with
23 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters