Dockerfile 296 B

1234567
  1. RUN apt-get install wget unzip -y
  2. RUN apt-get install default-jdk -y
  3. RUN wget -c https://github.com/JetBrains/kotlin/releases/download/v1.9.23/kotlin-compiler-1.9.23.zip
  4. RUN unzip kotlin-compiler-1.9.23.zip
  5. RUN mv kotlinc/bin/* /usr/local/bin/
  6. RUN rm -rf kotlinc
  7. RUN rm kotlin-compiler-1.9.23.zip