Thanks to visit codestin.com
Credit goes to github.com

Skip to content

⏳ Docker build / test timeout after latest commit #23

@jongalloway

Description

@jongalloway

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

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions