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