Update of techs, new version 2023.04-1
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/promote/production Build is passing Details
continuous-integration/drone/tag Build was killed Details

This commit is contained in:
Adam Štrauch 2023-04-12 13:26:54 +02:00
parent 4d804760cd
commit 7808e5062c
Signed by: cx
GPG Key ID: 018304FFA8988F8D
3 changed files with 16 additions and 16 deletions

View File

@ -44,28 +44,29 @@ ENV TERM xterm
## Node.js ## Node.js
WORKDIR /usr/src WORKDIR /usr/src
ADD build_node.sh /usr/local/bin/build_node.sh ADD build_node.sh /usr/local/bin/build_node.sh
# 2022/12 # 2023/04
RUN build_node.sh 16.19.0 RUN build_node.sh 16.19.0
RUN build_node.sh 17.9.1 RUN build_node.sh 17.9.1
RUN build_node.sh 18.12.1 RUN build_node.sh 18.12.1
RUN build_node.sh 18.14.0 RUN build_node.sh 18.15.0
RUN build_node.sh 19.3.0
RUN build_node.sh 19.6.0 RUN build_node.sh 19.6.0
RUN build_node.sh 19.9.0
## Python ## Python
WORKDIR /usr/src WORKDIR /usr/src
ADD build_python.sh /usr/local/bin/build_python.sh ADD build_python.sh /usr/local/bin/build_python.sh
# 2022/12 # 2023/04
RUN build_python.sh 3.9.16 RUN build_python.sh 3.9.16
RUN build_python.sh 3.10.9 RUN build_python.sh 3.10.11
RUN build_python.sh 3.11.1 RUN build_python.sh 3.11.3
## PHP 8 ## PHP 8
ADD build_php8.sh /usr/local/bin/build_php8.sh ADD build_php8.sh /usr/local/bin/build_php8.sh
# 2022/12 # 2023/04
RUN build_php8.sh 8.1.13 RUN build_php8.sh 8.1.13
RUN build_php8.sh 8.2.0 RUN build_php8.sh 8.1.16
RUN build_php8.sh 8.2.1 RUN build_php8.sh 8.2.1
RUN build_php8.sh 8.2.3
## Ruby ## Ruby
WORKDIR /usr/src WORKDIR /usr/src
@ -76,9 +77,9 @@ RUN build_ruby.sh 3.2.0
## Deno ## Deno
ADD build_deno.sh /usr/local/bin/build_deno.sh ADD build_deno.sh /usr/local/bin/build_deno.sh
# 2022/12 # 2023/04
RUN build_deno.sh 1.29.1
RUN build_deno.sh 1.30.1 RUN build_deno.sh 1.30.1
RUN build_deno.sh 1.32.3
############# #############

View File

@ -1,6 +1,6 @@
REPO=harbor.hq.rosti.cz/rosti/runtime REPO=harbor.hq.rosti.cz/rosti/runtime
DOCKER=docker DOCKER=docker
VERSION=2023.02-1 VERSION=2023.04-1
BASEIMAGE=debian:11 BASEIMAGE=debian:11
all: build all: build

View File

@ -3,12 +3,11 @@
. ~/.bashrc . ~/.bashrc
# DEFAULT VERSIONS # DEFAULT VERSIONS
VERSION_PYTHON=3.11.1 VERSION_PYTHON=3.11.3
VERSION_PHP=8.2.1 VERSION_PHP=8.2.3
VERSION_NODE=18.14.0 VERSION_NODE=19.9.0
VERSION_RUBY=3.2.0 VERSION_RUBY=3.2.0
VERSION_DENO=1.29.1 VERSION_DENO=1.32.3
VERSION_DENO=1.30.1
WIDTH=180 WIDTH=180
HEIGHT=25 HEIGHT=25