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

This commit is contained in:
2023-08-13 18:59:02 +02:00
parent 9484906dd8
commit c60d65e77e

View File

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