Skip to content

Commit

Permalink
revert JDK,gradle, and kotlin updates
Browse files Browse the repository at this point in the history
Signed-off-by: Satadru Pramanik <satadru@gmail.com>
  • Loading branch information
satmandu committed Jul 23, 2024
1 parent 28759d8 commit 6248c77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions android-sdk/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ LABEL maintainer "thyrlian@gmail.com"

# install Java
# install essential tools
ARG JDK_VERSION=21
ARG JDK_VERSION=17
RUN apt-get update && \
apt-get dist-upgrade -y && \
apt-get install -y --no-install-recommends openjdk-${JDK_VERSION}-jdk && \
Expand All @@ -21,7 +21,7 @@ RUN apt-get update && \

# download and install Gradle
# https://services.gradle.org/distributions/
ARG GRADLE_VERSION=8.9
ARG GRADLE_VERSION=8.7
ARG GRADLE_DIST=bin
RUN cd /opt && \
wget -q https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-${GRADLE_DIST}.zip && \
Expand All @@ -31,7 +31,7 @@ RUN cd /opt && \

# download and install Kotlin compiler
# https://github.com/JetBrains/kotlin/releases/latest
ARG KOTLIN_VERSION=2.0.0
ARG KOTLIN_VERSION=1.9.23
RUN cd /opt && \
wget -q https://github.com/JetBrains/kotlin/releases/download/v${KOTLIN_VERSION}/kotlin-compiler-${KOTLIN_VERSION}.zip && \
unzip *kotlin*.zip && \
Expand Down

0 comments on commit 6248c77

Please sign in to comment.