diff --git a/Dockers/socket-broker/Dockerfile b/Dockers/socket-broker/Dockerfile index 0e6ba9b..237aac3 100644 --- a/Dockers/socket-broker/Dockerfile +++ b/Dockers/socket-broker/Dockerfile @@ -29,7 +29,7 @@ ENV API_KEY=default-api-key-change-me # Health check HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ - CMD node -e "require('http').get('http://localhost:8080/health', (res) => { process.exit(res.statusCode === 200 ? 0 : 1) })" + CMD node -e "require('http').get('http://localhost:3000/health', (res) => { process.exit(res.statusCode === 200 ? 0 : 1) })" # Start the application CMD ["npm", "start"]