-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Following the latest commit, the docker build and test portions of the build GitHub Action are timing out. Please investigate and fix.
https://github.com/jongalloway/NLWebNet/actions/runs/15826152511
echo "π§ͺ Testing Docker image..."
Start container in background
docker run -d --name nlwebnet-test -p 8080:8080 nlwebnet-demo:test
Wait for container to start
sleep 10
Test health endpoint
if curl -f http://localhost:8080/health; then
echo "β
Health check passed"
else
echo "β Health check failed"
docker logs nlwebnet-test
exit 1
fi
Cleanup
docker stop nlwebnet-test
docker rm nlwebnet-test
shell: /usr/bin/bash -e {0}
env:
DOTNET_VERSION: 9.0.x
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
CI: true
π§ͺ Testing Docker image...
108b32de79cef7189edd76779f9a728cadae19b3a7dc18b1d85ff0bb6848221c
After this, it runs for over an hour and download progress stays a 0