From d2100d5d30ba04db9a6d2b39c8ff32889cdf0066 Mon Sep 17 00:00:00 2001 From: Mika Rinne Date: Thu, 6 Feb 2025 16:28:10 +0200 Subject: [PATCH] fix --- .../files/Dockerfile.native | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-dev/devops-and-containers/functions/java-helloworld-AI-with-local-dev-and-oci-functions/files/Dockerfile.native b/app-dev/devops-and-containers/functions/java-helloworld-AI-with-local-dev-and-oci-functions/files/Dockerfile.native index bb28b71f5..e330371a0 100644 --- a/app-dev/devops-and-containers/functions/java-helloworld-AI-with-local-dev-and-oci-functions/files/Dockerfile.native +++ b/app-dev/devops-and-containers/functions/java-helloworld-AI-with-local-dev-and-oci-functions/files/Dockerfile.native @@ -15,6 +15,6 @@ FROM fnproject/fn-java-fdk:jre17-1.0.198 as fdk FROM container-registry.oracle.com/os/oraclelinux:8-slim COPY --from=native /app/Hello . -COPY --from=fdk /function/runtime/* . +COPY --from=fdk /function/runtime/* ./ ENTRYPOINT [ "./Hello" ] CMD [ "com.example.HelloAIFunction::handleRequest", "-Djava.library.path=/lib"] \ No newline at end of file