File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -247,15 +247,15 @@ ENV PATH="/root/bin/opam/ocaml-base-compiler.$OCAML/bin/:${PATH}"
247
247
248
248
# https://kotlinlang.org/docs/command-line.html
249
249
ARG KOTLIN=2.0.21
250
- RUN curl -L -o kotlin-compiler-$KOTLIN.zip \
250
+ RUN curl -LO \
251
251
https://github.com/JetBrains/kotlin/releases/download/v$KOTLIN/kotlin-compiler-$KOTLIN.zip \
252
252
&& unzip kotlin-compiler-$KOTLIN.zip \
253
253
&& rm kotlin-compiler-$KOTLIN.zip
254
254
ENV PATH="/root/bin/kotlinc/bin/:${PATH}"
255
255
256
256
# https://download.racket-lang.org/
257
257
ARG RACKET=8.14
258
- RUN curl -L -o racket-$RACKET-x86_64-linux-cs.sh \
258
+ RUN curl -LO \
259
259
https://download.racket-lang.org/installers/$RACKET/racket-$RACKET-x86_64-linux-cs.sh \
260
260
&& sh racket-$RACKET-x86_64-linux-cs.sh --unix-style --dest /root/ \
261
261
&& rm racket-$RACKET-x86_64-linux-cs.sh
@@ -280,15 +280,15 @@ ENV PATH="/root/bin/luajit/bin:${PATH}"
280
280
281
281
# https://github.com/vlang/v/releases
282
282
ARG VLANG=0.4.8
283
- RUN curl -Lo v_linux.zip \
283
+ RUN curl -LO \
284
284
https://github.com/vlang/v/releases/download/$VLANG/v_linux.zip \
285
285
&& unzip -q v_linux.zip \
286
286
&& rm v_linux.zip
287
287
ENV PATH="/root/bin/v/:${PATH}"
288
288
289
289
# https://github.com/odin-lang/Odin/releases
290
290
ARG ODIN=2024-11
291
- RUN curl -Lo odin-linux-amd64-dev-$ODIN.zip \
291
+ RUN curl -LO \
292
292
https://github.com/odin-lang/Odin/releases/download/dev-$ODIN/odin-linux-amd64-dev-$ODIN.zip \
293
293
&& unzip -q odin-linux-amd64-dev-$ODIN.zip \
294
294
&& tar xf dist.tar.gz \
You can’t perform that action at this time.
0 commit comments