From c5a86f5ae6475301bf99583f7ca51a3982d0d678 Mon Sep 17 00:00:00 2001 From: Liquid <116100070+Liquidwe@users.noreply.github.com> Date: Wed, 23 Oct 2024 21:47:52 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20chore:=20Updating=20the=20base?= =?UTF-8?q?=20docker=20image=20description=20(#30)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- flink/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/flink/Dockerfile b/flink/Dockerfile index 6cadf9e..5945311 100644 --- a/flink/Dockerfile +++ b/flink/Dockerfile @@ -1,5 +1,8 @@ -FROM repository.chainbase.com/network/flink:v1.18-0.2 -# Use the official Flink image as base for the final image +# Use the official Flink image as the base image +# The official Flink image is built on top of the official Flink image: FROM flink:1.18.1 +# /opt/flink/lib/ is the directory where Flink reads JAR files from +# IF you want to use other JAR files, you can copy them to /opt/flink/lib/ in the Dockerfile +FROM repository.chainbase.com/manuscript-node/manuscript-node:latest # Copy the built JAR from the build stage ADD runner/target/runner-1.0-SNAPSHOT.jar /opt/flink/lib/runner-1.0-SNAPSHOT.jar \ No newline at end of file