File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 4444 type=semver,pattern={{version}}
4545 type=semver,pattern={{major}}.{{minor}}
4646 type=raw,value=latest,enable={{is_default_branch}}
47+ # Note: semver tags require Git tags in the format v1.2.3
4748
4849 - name : Build Docker image
4950 uses : docker/build-push-action@v6
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ ENV ASPNETCORE_URLS=http://0.0.0.0:3001
4848
4949# Health check
5050HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
51- CMD curl -f http://localhost:3001/mcp || exit 1
51+ CMD curl -f http://localhost:3001/ || exit 1
5252
5353# Entry point
5454ENTRYPOINT ["dotnet" , "AbeckDev.DbTimetable.Mcp.dll" ]
Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ Images are tagged with multiple identifiers for flexibility:
269269Example pulling a specific version:
270270
271271``` bash
272- docker pull ghcr.io/abeckdev/db-timetableapi-mcpserver:main-abc1234
272+ docker pull ghcr.io/abeckdev/db-timetableapi-mcpserver:main-a1b2c3d
273273```
274274
275275---
You can’t perform that action at this time.
0 commit comments