From c243f8310ea7cd08c0114433af70c1d59d59c621 Mon Sep 17 00:00:00 2001 From: uzurka Date: Sun, 13 Aug 2023 18:51:42 +0200 Subject: [PATCH] fixed Dockerfile --- Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index a7a5d86..4e775b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,10 +44,11 @@ ARG GRAALVM_MINOR_VERSION ARG JAVA_VERSION ARG JAVA_HOME -COPY platform.sh /platform.sh -RUN ls -l -RUN chmod +x /platform.sh -RUN /platform.sh +RUN mkdir /scripts +COPY platform.sh /scripts/platform.sh +RUN ls -l /scripts +RUN chmod +x /scripts/platform.sh +RUN /scripts/platform.sh SHELL ["/bin/bash", "-c"]