File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 6060 run : goreleaser
6161 shell : false
6262 tty : true
63- progress : plain
63+ progress : plain
64+
65+ # validate the docker file builds correctly as this is used by docker hub for publishing the mcp into their registry
66+ - label : " :docker: build image"
67+ depends_on : quality-checks
68+ command : docker build -t buildkite-mcp-server:latest -f Dockerfile.local .
Original file line number Diff line number Diff line change 11# Build stage
2- FROM public.ecr.aws/docker/library/golang:1.24.5 AS builder
2+ FROM cgr.dev/chainguard/go:latest AS builder
33
44WORKDIR /app
55
@@ -14,10 +14,7 @@ COPY . .
1414RUN CGO_ENABLED=0 go build -o buildkite-mcp-server ./cmd/buildkite-mcp-server/main.go
1515
1616# Final stage
17- FROM alpine:3.22
18-
19- # Install ca-certificates for HTTPS requests
20- RUN apk --no-cache add ca-certificates
17+ FROM cgr.dev/chainguard/static:latest
2118
2219WORKDIR /app
2320
You can’t perform that action at this time.
0 commit comments