Initial commit

This commit is contained in:
2025-11-28 07:49:17 -03:00
commit d84803efc9
12 changed files with 2074 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM nginx:alpine
# Copia configuração do Nginx (cache leve para assets, SPA fallback)
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Copia arquivos estáticos do dashboard
COPY index.html /usr/share/nginx/html/index.html
COPY assets /usr/share/nginx/html/assets
# Porta padrão já exposta na imagem base (80)
# Dica: para rodar
# docker build -t dashboard_telseg .
# docker run --name dashboard_telseg -p 8080:80 -d dashboard_telseg