Usar node:lts-slim y configurar puertos 8089:8090 con red principal
All checks were successful
build-and-deploy / build (push) Successful in 59s
build-and-deploy / deploy (push) Successful in 0s

This commit is contained in:
2025-08-15 12:28:20 -06:00
parent 05e6467158
commit 7adc342ffa
2 changed files with 4 additions and 3 deletions

View File

@@ -49,6 +49,7 @@ jobs:
docker run -d \ docker run -d \
--name snatchgame \ --name snatchgame \
--restart unless-stopped \ --restart unless-stopped \
-p 3000:3000 \ --network principal \
-p 2567:2567 \ -p 8089:3000 \
-p 8090:2567 \
$REG/snatchgame:latest $REG/snatchgame:latest

View File

@@ -1,4 +1,4 @@
FROM node:lts FROM node:lts-slim
WORKDIR /app WORKDIR /app