|
@@ -0,0 +1,7 @@
|
|
|
+RUN apt-get install wget unzip -y
|
|
|
+RUN apt-get install default-jdk -y
|
|
|
+RUN wget -c https://github.com/JetBrains/kotlin/releases/download/v1.9.23/kotlin-compiler-1.9.23.zip
|
|
|
+RUN unzip kotlin-compiler-1.9.23.zip
|
|
|
+RUN mv kotlinc/bin/* /usr/local/bin/
|
|
|
+RUN rm -rf kotlinc
|
|
|
+RUN rm kotlin-compiler-1.9.23.zip
|