Fix deployment test with simplified Nginx container

- Replace complex Node.js app with simple Nginx container
- Add dynamic port allocation to prevent conflicts
- Improve test reliability and cleanup
- Remove dependency on Docker Compose for this test
This commit is contained in:
Deploy Bot
2025-07-17 21:50:23 -04:00
parent f67979ef35
commit 07cfca4908
2 changed files with 66 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
version: '3'
services:
app:
image: ${TEST_APP}
ports:
- "8081:8080"
environment:
- NODE_ENV=test
restart: unless-stopped