We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad88378 commit e0953dbCopy full SHA for e0953db
3 files changed
.dockerignore
@@ -0,0 +1 @@
1
+node_modules
Dockerfile
@@ -0,0 +1,10 @@
+FROM node:lts as porphyry-builder
2
+
3
+COPY . /Porphyry
4
+WORKDIR /Porphyry
5
+RUN npm install
6
+RUN npm run build
7
8
+FROM nginx
9
10
+COPY --from=porphyry-builder /Porphyry/build /usr/share/nginx/html
package.json
@@ -16,7 +16,7 @@
16
"sort-by": "^1.2.0"
17
},
18
"devDependencies": {
19
- "react-scripts": "^3.0.1",
+ "react-scripts": "^3.2.0",
20
"serve": "^11.0.2"
21
22
"scripts": {
0 commit comments