Skip to content

Commit 73dba74

Browse files
committed
fixup! Run PR validation on multiple OS
1 parent 6b19476 commit 73dba74

File tree

2 files changed

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

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ abstract class TsTestBase {
143143
// ===== TypeScript Server (SSE/HTTP) =====
144144
protected fun startTypeScriptServer(port: Int): ContainerProcess {
145145
val container = GenericContainer(tsDockerImage()).apply {
146-
withImagePullPolicy(PullPolicy.defaultPolicy())
146+
withImagePullPolicy(PullPolicy.alwaysPull())
147147
withExposedPorts(port)
148148
mapOf(
149149
"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)