Update port
All checks were successful
Build and Push to Registry / build-and-push (push) Successful in 27s

This commit is contained in:
omaroughriss 2025-07-03 11:37:45 +02:00
parent 6f29513951
commit b191e5f7b2
2 changed files with 2 additions and 2 deletions

View File

@ -15,5 +15,5 @@ RUN adduser -D appuser --uid 10000 && \
USER appuser
# Configuration du port et démarrag
EXPOSE 8080
EXPOSE 3001
CMD ["npm", "start"]

View File

@ -4,7 +4,7 @@ const fetch = require('node-fetch');
// Initialisation de l'application Express
const app = express();
const PORT = process.env.PORT || 8080;
const PORT = process.env.PORT || 3001;
// Configuration CORS
const corsOptions = {