Made the Dockerfile only build, not deploy via Nginx. (For now).

This commit is contained in:
2026-01-01 19:56:09 -06:00
parent 28d200d884
commit 5277bfaa89
2 changed files with 1 additions and 31 deletions

View File

@@ -1,19 +0,0 @@
events {}
http {
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
}