We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5e740aa + dfbad31 commit 3888ab1Copy full SHA for 3888ab1
.dockerignore
@@ -0,0 +1,6 @@
1
+.git
2
+.gitignore
3
+node_modules
4
+Dockerfile
5
+tests
6
+dist
Dockerfile
@@ -0,0 +1,8 @@
+FROM node:10 as node-build
+WORKDIR /app
+COPY . /app
+RUN npm install && \
+ BASE_URL="/" npm run build
+
7
+FROM nginx:alpine
8
+COPY --from=node-build /app/dist /usr/share/nginx/html
0 commit comments