This commit is contained in:
parent
6c7c6f80fb
commit
0db0f874fa
1 changed files with 8 additions and 7 deletions
15
Dockerfile
15
Dockerfile
|
@ -61,9 +61,9 @@ RUN build_node.sh 18.20.5 & \
|
|||
# https://www.python.org/downloads/
|
||||
WORKDIR /usr/src
|
||||
ADD build_python.sh /usr/local/bin/build_python.sh
|
||||
RUN build_python.sh 3.11.11
|
||||
RUN build_python.sh 3.12.8
|
||||
RUN build_python.sh 3.13.1
|
||||
RUN build_python.sh 3.11.11 & \
|
||||
build_python.sh 3.12.8 & \
|
||||
build_python.sh 3.13.1
|
||||
|
||||
## PHP 8
|
||||
# https://www.php.net/downloads.php
|
||||
|
@ -75,14 +75,15 @@ RUN build_php8.sh 8.4.3
|
|||
# https://www.ruby-lang.org/en/downloads/releases/
|
||||
WORKDIR /usr/src
|
||||
ADD build_ruby.sh /usr/local/bin/build_ruby.sh
|
||||
RUN build_ruby.sh 3.3.7
|
||||
RUN build_ruby.sh 3.4.1
|
||||
RUN build_ruby.sh 3.3.7 & \
|
||||
build_ruby.sh 3.4.1
|
||||
|
||||
## Deno
|
||||
# From: https://github.com/denoland/deno/releases
|
||||
ADD build_deno.sh /usr/local/bin/build_deno.sh
|
||||
RUN build_deno.sh 1.46.3 & \
|
||||
build_deno.sh 2.1.6
|
||||
# TODO: deno cannot run in parallel because it downloads filenames with the same name
|
||||
RUN build_deno.sh 1.46.3
|
||||
RUN build_deno.sh 2.1.6
|
||||
|
||||
# Bun
|
||||
# From here: https://bun.sh/
|
||||
|
|
Loading…
Reference in a new issue