build: docker images (#2860)

This commit is contained in:
LongYinan
2023-06-27 17:23:19 +08:00
committed by GitHub
parent 05452bb297
commit dd58b1bbf6
13 changed files with 155 additions and 288 deletions

View File

@@ -0,0 +1,13 @@
server {
listen 8080;
root /app/dist;
location / {
try_files $uri $uri/index.html $uri.html =404;;
}
error_page 404 /404.html;
location = /404.html {
internal;
}
}