We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d296ee commit 3086291Copy full SHA for 3086291
Dockerfile
@@ -6,6 +6,10 @@ LABEL maintainer <[email protected]>
6
7
# Install K2JVMCompiler
8
ADD docker/k2.tar.gz /opt/techio/
9
+RUN wget https://github.com/JetBrains/kotlin/releases/download/v1.1.50/kotlin-compiler-1.1.50.zip -O /opt/kotlinc.zip \
10
+ && unzip /opt/kotlinc.zip -d /opt \
11
+ && rm -f /opt/kotlinc.zip \
12
+ && (cd /opt/techio/k2 ; find ../../kotlinc/lib -type f -exec ln -s {} \;)
13
#RUN gunzip -c /opt/techio/k2.tar.gz | tar xvC /opt/techio \
14
# && rm /opt/techio/k2.tar.gz
15
0 commit comments