frontend: add dockerfile

Signed-off-by: Nicolas Froger <nicolas@kektus.xyz>
This commit is contained in:
Nicolas Froger 2024-07-25 19:37:43 +02:00
commit 8873fdb2c8
No known key found for this signature in database
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,10 @@
server {
listen 8080;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
}