From ae946150959fd8111a31adb92684652cc453519d Mon Sep 17 00:00:00 2001 From: slhafzjw Date: Wed, 25 Feb 2026 15:30:13 +0800 Subject: [PATCH] refactor(docker): rename runtime artifact and entrypoint to `slhaf-hub` --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 346dbc5..25f9e69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,10 +14,10 @@ RUN gradle --no-daemon clean installDist FROM ${RUNTIME_IMAGE} WORKDIR /app -COPY --from=build /workspace/build/install/kotlin-scripts-host /app/kotlin-scripts-host +COPY --from=build /workspace/build/install/slhaf-hub /app/slhaf-hub RUN mkdir -p /app/scripts EXPOSE 8080 -ENTRYPOINT ["/app/kotlin-scripts-host/bin/kotlin-scripts-host"] +ENTRYPOINT ["/app/slhaf-hub/bin/slhaf-hub"] CMD ["--host=0.0.0.0", "--port=8080", "--scripts-dir=/app/scripts"]