From 6b1e830322955e196e5814f61856eb6b961ddfb2 Mon Sep 17 00:00:00 2001 From: Matt Toohey Date: Thu, 7 Nov 2024 14:34:48 +1100 Subject: [PATCH] fix: local jvm runner relies on released jvm runner (#3353) Previously this relied on the standard runner image which no longer includes the jvm (as of the latest release) --- deployment/Dockerfile.runner-jvm.test | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/deployment/Dockerfile.runner-jvm.test b/deployment/Dockerfile.runner-jvm.test index 209fe2569..cc7256cc0 100644 --- a/deployment/Dockerfile.runner-jvm.test +++ b/deployment/Dockerfile.runner-jvm.test @@ -1,7 +1,6 @@ # Huge hack, we want the JVM and same runtime environment as the runner # So we just take the latest published runner image and copy the JDK from it -# TODO: change this to ftl-runner-jvm once we have released it -FROM ftl0/ftl-runner:latest AS jdk +FROM ftl0/ftl-runner-jvm:latest AS jdk # Create the runtime image. FROM ubuntu:24.04