From 94782a85b64adb1a445ce880298c7584cbb2486a Mon Sep 17 00:00:00 2001 From: appleboy Date: Fri, 30 May 2025 06:47:28 +0000 Subject: [PATCH] build: streamline container configuration and metadata (#51) - Remove the container healthcheck definition - Delete the image authors label from the build Signed-off-by: appleboy Reviewed-on: https://gitea.com/gitea/gitea-mcp/pulls/51 Co-authored-by: appleboy Co-committed-by: appleboy --- Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index d84a422..4234bc7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,10 +29,6 @@ COPY --from=builder --chown=nonroot:nonroot /app/gitea-mcp . USER nonroot:nonroot -HEALTHCHECK --interval=30s --timeout=3s \ - CMD ["/app/gitea-mcp", "healthcheck"] - -LABEL org.opencontainers.image.authors="your-team@example.com" LABEL org.opencontainers.image.version="${VERSION}" CMD ["/app/gitea-mcp"]