txlyre 2 dni temu
rodzic
commit
d4355507a6

+ 3 - 3
langs/j/Dockerfile.user

@@ -1,6 +1,6 @@
-RUN wget -c https://github.com/jsoftware/jsource/releases/download/build95/lgcc64.zip
-RUN unzip lgcc64.zip
-RUN rm lgcc64.zip
+RUN wget -c https://github.com/jsoftware/jsource/releases/download/build96/l64.zip
+RUN unzip l64.zip
+RUN rm l64.zip
 RUN mv j64 .j
 RUN mkdir -p system/util
 RUN touch system/util/boot.ijs

+ 1 - 1
langs/java/Dockerfile

@@ -1 +1 @@
-RUN apt-get install openjdk-17-jdk-headless openjdk-17-jre-headless -y
+RUN apt-get install openjdk-21-jdk-headless openjdk-21-jre-headless -y

+ 3 - 3
langs/julia/Dockerfile.user

@@ -1,3 +1,3 @@
-RUN wget -c https://julialang-s3.julialang.org/bin/linux/x64/1.10/julia-1.10.2-linux-x86_64.tar.gz
-RUN tar -xf julia-1.10.2-linux-x86_64.tar.gz
-RUN mv julia-1.10.2 .julia
+RUN wget -c https://julialang-s3.julialang.org/bin/linux/x64/1.12/julia-1.12.6-linux-x86_64.tar.gz
+RUN tar -xf julia-1.12.6-linux-x86_64.tar.gz
+RUN mv julia-1.12.6 .julia

+ 3 - 3
langs/kotlin/Dockerfile

@@ -1,8 +1,8 @@
 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 wget -c https://github.com/JetBrains/kotlin/releases/download/v2.3.20/kotlin-compiler-2.3.20.zip
+RUN unzip kotlin-compiler-2.3.20.zip
 RUN mv kotlinc/bin/* /usr/local/bin/
 RUN mv kotlinc /usr/local/share/kotlin
-RUN rm kotlin-compiler-1.9.23.zip
+RUN rm kotlin-compiler-2.3.20.zip
 ENV KOTLIN_HOME=/usr/local/share/kotlin

+ 1 - 8
langs/odin/Dockerfile

@@ -1,8 +1 @@
-RUN apt-get install wget unzip -y
-RUN apt-get install libedit2 -y
-RUN apt-get install libxml2 -y
-RUN apt-get install zlib1g -y
-RUN apt-get install libffi8 -y
-RUN apt-get install libtinfo6 -y
-RUN apt-get install libstdc++6 -y
-RUN apt-get install clang -y
+RUN apt-get install wget -y

+ 4 - 5
langs/odin/Dockerfile.user

@@ -1,5 +1,4 @@
-RUN wget -c https://github.com/odin-lang/Odin/releases/download/dev-2024-03/odin-ubuntu-amd64-dev-2024-03.zip
-RUN unzip odin-ubuntu-amd64-dev-2024-03.zip
-RUN unzip dist.zip
-RUN mv dist .odin
-RUN rm *.zip
+RUN wget -c https://github.com/odin-lang/Odin/releases/download/dev-2026-04/odin-linux-amd64-dev-2026-04.tar.gz
+RUN tar -xf odin-linux-amd64-dev-2026-04.tar.gz
+RUN mv "odin-linux-amd64-nightly+2026-04-02" .odin
+RUN rm odin-linux-amd64-dev-2026-04.tar.gz

+ 3 - 3
langs/pwsh/Dockerfile

@@ -1,4 +1,4 @@
 RUN apt-get install wget libicu72 libgssapi-krb5-2 -y
-RUN wget -c https://github.com/PowerShell/PowerShell/releases/download/v7.4.1/powershell_7.4.1-1.deb_amd64.deb
-RUN yes | dpkg -i powershell_7.4.1-1.deb_amd64.deb
-RUN rm powershell_7.4.1-1.deb_amd64.deb
+RUN wget -c https://github.com/PowerShell/PowerShell/releases/download/v7.6.0/powershell_7.6.0-1.deb_amd64.deb
+RUN yes | dpkg -i powershell_7.6.0-1.deb_amd64.deb
+RUN rm powershell_7.6.0-1.deb_amd64.deb

+ 4 - 4
langs/uiua/Dockerfile

@@ -1,7 +1,7 @@
-RUN apt-get install wget unzip libasound2 -y
-RUN wget -c https://github.com/uiua-lang/uiua/releases/download/0.9.5/uiua-bin-x86_64-unknown-linux-gnu.zip
-RUN unzip uiua-bin-x86_64-unknown-linux-gnu.zip
+RUN apt-get install wget unzip -y
+RUN wget -c https://github.com/uiua-lang/uiua/releases/download/0.18.1/uiua-bin-x86_64-unknown-linux-gnu-no-audio.zip
+RUN unzip uiua-bin-x86_64-unknown-linux-gnu-no-audio.zip
 RUN mv uiua /usr/bin/uiua
 RUN chmod +x /usr/bin/uiua
 RUN chmod 705 /usr/bin/uiua
-RUN rm uiua-bin-x86_64-unknown-linux-gnu.zip
+RUN rm uiua-bin-x86_64-unknown-linux-gnu-no-audio.zip

+ 3 - 3
langs/zig/Dockerfile

@@ -1,4 +1,4 @@
 RUN apt-get install wget xz-utils -y
-RUN wget -c https://ziglang.org/builds/zig-linux-x86_64-0.14.0-dev.1632+d83a3f174.tar.xz
-RUN tar -xf zig-linux-x86_64-0.14.0-dev.1632+d83a3f174.tar.xz
-RUN cd zig-linux-x86_64-0.14.0-dev.1632+d83a3f174 && mv lib /usr/bin/lib && mv zig /usr/bin/zig && cd .. && rm -rf zig-linux-x86_64-0.14.0-dev.1632+d83a3f174 && rm zig-linux-x86_64-0.14.0-dev.1632+d83a3f174.tar.xz
+RUN wget -c https://ziglang.org/builds/zig-x86_64-linux-0.17.0-dev.27+0dd99c37c.tar.xz
+RUN tar -xf zig-x86_64-linux-0.17.0-dev.27+0dd99c37c.tar.xz
+RUN cd zig-x86_64-linux-0.17.0-dev.27+0dd99c37c && mv lib /usr/bin/lib && mv zig /usr/bin/zig && cd .. && rm -rf zig-x86_64-linux-0.17.0-dev.27+0dd99c37c && rm zig-x86_64-linux-0.17.0-dev.27+0dd99c37c.tar.xz