Skip to content

Commit 3466c9c

Browse files
authored
feat(sinks): align sinks tools configurations, add e2e tests (#78)
1 parent a231e67 commit 3466c9c

15 files changed

Lines changed: 1625 additions & 930 deletions

File tree

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
# Multi-stage build for multi-platform support
16-
FROM --platform=$BUILDPLATFORM golang:1.24-alpine AS builder
16+
FROM --platform=$BUILDPLATFORM golang:1.25-alpine AS builder
1717

1818
# Install build dependencies
1919
RUN apk add --no-cache git make
@@ -41,9 +41,9 @@ ARG BUILD_DATE
4141
# Build the binary for the target platform
4242
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \
4343
go build -ldflags "\
44-
-X main.version=${VERSION} \
45-
-X main.commit=${COMMIT} \
46-
-X main.date=${BUILD_DATE}" \
44+
-X main.version=${VERSION} \
45+
-X main.commit=${COMMIT} \
46+
-X main.date=${BUILD_DATE}" \
4747
-o snmcp cmd/streamnative-mcp-server/main.go
4848

4949
# Final stage - minimal Alpine image

0 commit comments

Comments
 (0)