feat(deploy): Añade configuración Docker para despliegue de servicios

This commit is contained in:
2025-07-04 12:12:15 -03:00
parent 5e317ab304
commit 32c99515dd
7 changed files with 169 additions and 3 deletions

View File

@@ -62,8 +62,8 @@ export const RawBolsaUsaTable = () => {
<TableRow key={row.id}>
<TableCell>{row.ticker}</TableCell>
<TableCell>{row.nombreEmpresa}</TableCell>
<TableCell align="right">${formatCurrency(row.precioActual, 'USD')}</TableCell>
<TableCell align="right">${formatCurrency(row.cierreAnterior, 'USD')}</TableCell>
<TableCell align="right">{formatCurrency(row.precioActual, 'USD')}</TableCell>
<TableCell align="right">{formatCurrency(row.cierreAnterior, 'USD')}</TableCell>
<TableCell align="right">{row.porcentajeCambio.toFixed(2)}%</TableCell>
<TableCell>{formatFullDateTime(row.fechaRegistro)}</TableCell>
</TableRow>