fixed Dockerfile
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-08-13 18:51:42 +02:00
parent 6cd3435f10
commit c243f8310e

View File

@ -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"]