You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
0 commit comments