We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a037ec commit eae92caCopy full SHA for eae92ca
Dockerfile
@@ -8,3 +8,4 @@ RUN npm run build
8
FROM nginx
9
10
COPY --from=porphyry-builder /Porphyry/build /usr/share/nginx/html
11
+COPY conf/nginx.conf /etc/nginx/conf.d/default.conf
conf/nginx.conf
@@ -0,0 +1,6 @@
1
+server {
2
+ location / {
3
+ root /usr/share/nginx/html;
4
+ try_files $uri /index.html;
5
+ }
6
+}
0 commit comments