Skip to content

Commit 61b7614

Browse files
committed
fixup! Run PR validation on multiple OS
1 parent e0e01ae commit 61b7614

File tree

2 files changed

+1
-4
lines changed
  • kotlin-sdk-test/src/jvmTest/kotlin/io/modelcontextprotocol/kotlin/sdk/integration

2 files changed

+1
-4
lines changed

kotlin-sdk-test/src/jvmTest/kotlin/io/modelcontextprotocol/kotlin/sdk/integration/typescript/TsTestBase.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,6 @@ abstract class TsTestBase {
144144
protected fun startTypeScriptServer(port: Int): ContainerProcess {
145145
val container = GenericContainer(tsDockerImage()).apply {
146146
withImagePullPolicy(PullPolicy.defaultPolicy())
147-
withCreateContainerCmdModifier { cmd ->
148-
cmd.withPlatform("linux/amd64")
149-
}
150147
withExposedPorts(port)
151148
mapOf(
152149
"MCP_HOST" to "0.0.0.0",

kotlin-sdk-test/src/jvmTest/kotlin/io/modelcontextprotocol/kotlin/sdk/integration/utils/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Docker image for running TypeScript SDK test servers/clients with SSE over HTTP and STDIO
22

3-
FROM node:20-alpine AS base
3+
FROM --platform=linux/amd64 node:20-alpine AS base
44

55
# 1) System deps
66
RUN apk add --no-cache git

0 commit comments

Comments
 (0)