File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -40,10 +40,9 @@ ENV PATH=$PATH:~/dlang/dmd-$DLANG_VERSION/linux/bin64/
40
40
RUN sudo sh -c 'wget -c https://dl.google.com/go/go1.14.2.linux-amd64.tar.gz -O - | sudo tar -xz -C /usr/local'
41
41
ENV PATH=$PATH:/usr/local/go/bin
42
42
43
- # Setup Kotlin (doesnt unzip right maybe?)
44
- RUN sudo sh -c 'wget -c https://github.com/JetBrains/kotlin/releases/download/v1.5.30/kotlin-compiler-1.5.30.zip -O /usr/local/kotlinc.zip'
45
- RUN unzip /usr/local/kotlinc.zip
46
- ENV PATH=$PATH:/usr/local/kotlinc/bin
43
+ # Setup Kotlin
44
+ RUN mkdir -p ~/kotlin && wget -c https://github.com/JetBrains/kotlin/releases/download/v1.5.30/kotlin-compiler-1.5.30.zip -O ~/kotlin/kotlinc.zip && cd ~/kotlin && unzip kotlinc.zip
45
+ ENV PATH=$PATH:~/kotlin/kotlinc/bin
47
46
48
47
# Setup lolcode
49
48
RUN git clone https://github.com/justinmeza/lci.git ~/lolcode && cd ~/lolcode && mkdir build && cd build && cmake .. && make -B
You can’t perform that action at this time.
0 commit comments