downgraded jdk version
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Nick Leeman 2023-09-09 15:43:34 +02:00
parent 183a3e2e19
commit 5ba07bcc2b

View File

@ -16,7 +16,7 @@ RUN apt-get update -y
RUN apt-get install -y jq curl unzip
# Install Java Development Kit
RUN apt-get install -y openjdk-18-jdk openjdk-18-jre
RUN apt-get install -y openjdk-17-jdk openjdk-17-jre
RUN java --version
# Get latest stable Defold version and SHA1
@ -26,6 +26,7 @@ RUN hash=$(echo $stable_info | jq -r '.sha1')
# Download bob.jar
RUN curl -L -o bob.jar https://github.com/defold/defold/releases/download/$version/bob.jar -s
RUN chmod +x bob.jar
# Add bob.jar to PATH
ENV PATH="/defold:${PATH}"