Up to date techs Latest postgresql client
This commit is contained in:
parent
1d35c57680
commit
52c3d32951
3 changed files with 26 additions and 26 deletions
34
Dockerfile
34
Dockerfile
|
@ -51,54 +51,50 @@ ENV TERM xterm
|
||||||
# From https://nodejs.org/en/about/previous-releases
|
# From https://nodejs.org/en/about/previous-releases
|
||||||
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
|
||||||
RUN build_node.sh 18.20.5 & \
|
RUN build_node.sh 20.19.1 & \
|
||||||
build_node.sh 20.18.1 & \
|
build_node.sh 22.15.0 & \
|
||||||
build_node.sh 21.7.3 & \
|
build_node.sh 23.11.0
|
||||||
build_node.sh 22.13.0 & \
|
|
||||||
build_node.sh 23.6.0
|
|
||||||
|
|
||||||
## Python
|
## Python
|
||||||
# https://www.python.org/downloads/
|
# https://www.python.org/downloads/
|
||||||
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
|
||||||
RUN build_python.sh 3.11.11
|
RUN build_python.sh 3.12.10
|
||||||
RUN build_python.sh 3.12.8
|
RUN build_python.sh 3.13.2
|
||||||
RUN build_python.sh 3.13.1
|
|
||||||
|
|
||||||
## PHP 8
|
## PHP 8
|
||||||
# https://www.php.net/downloads.php
|
# https://www.php.net/downloads.php
|
||||||
ADD build_php8.sh /usr/local/bin/build_php8.sh
|
ADD build_php8.sh /usr/local/bin/build_php8.sh
|
||||||
RUN build_php8.sh 8.3.16
|
RUN build_php8.sh 8.3.20
|
||||||
RUN build_php8.sh 8.4.3
|
RUN build_php8.sh 8.4.6
|
||||||
|
|
||||||
## Ruby
|
## Ruby
|
||||||
# https://www.ruby-lang.org/en/downloads/releases/
|
# https://www.ruby-lang.org/en/downloads/releases/
|
||||||
WORKDIR /usr/src
|
WORKDIR /usr/src
|
||||||
ADD build_ruby.sh /usr/local/bin/build_ruby.sh
|
ADD build_ruby.sh /usr/local/bin/build_ruby.sh
|
||||||
RUN build_ruby.sh 3.3.7
|
RUN build_ruby.sh 3.3.8
|
||||||
RUN build_ruby.sh 3.4.1
|
RUN build_ruby.sh 3.4.3
|
||||||
|
|
||||||
## Deno
|
## Deno
|
||||||
# From: https://github.com/denoland/deno/releases
|
# From: https://github.com/denoland/deno/releases
|
||||||
ADD build_deno.sh /usr/local/bin/build_deno.sh
|
ADD build_deno.sh /usr/local/bin/build_deno.sh
|
||||||
# TODO: deno cannot run in parallel because it downloads filenames with the same name
|
# 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.3.1
|
||||||
RUN build_deno.sh 2.1.6
|
|
||||||
|
|
||||||
# Bun
|
# Bun
|
||||||
# From here: https://bun.sh/
|
# From here: https://bun.sh/
|
||||||
ADD build_bun.sh /usr/local/bin/build_bun.sh
|
ADD build_bun.sh /usr/local/bin/build_bun.sh
|
||||||
RUN build_bun.sh 1.1.45
|
RUN build_bun.sh 1.2.11
|
||||||
|
|
||||||
# OpenJDK
|
# OpenJDK
|
||||||
# From here: https://jdk.java.net/
|
# From here: https://jdk.java.net/
|
||||||
ADD build_openjdk.sh /usr/local/bin/build_openjdk.sh
|
ADD build_openjdk.sh /usr/local/bin/build_openjdk.sh
|
||||||
RUN build_openjdk.sh 23.0.1 c28985cbf10d4e648e4004050f8781aa 11
|
RUN build_openjdk.sh 24.0.1 24a58e0e276943138bf3e963e6291ac2 9
|
||||||
|
|
||||||
# Golang
|
# Golang
|
||||||
# From here: https://go.dev/dl/
|
# From here: https://go.dev/dl/
|
||||||
ADD build_golang.sh /usr/local/bin/build_golang.sh
|
ADD build_golang.sh /usr/local/bin/build_golang.sh
|
||||||
RUN build_golang.sh 1.23.5
|
RUN build_golang.sh 1.22.2
|
||||||
|
|
||||||
|
|
||||||
#############
|
#############
|
||||||
|
@ -113,6 +109,10 @@ RUN apt install -f xfonts-75dpi && \
|
||||||
|
|
||||||
#############
|
#############
|
||||||
|
|
||||||
|
## Up to date PostgreSQL
|
||||||
|
|
||||||
|
RUN apt install postgresql-common /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh && apt install postgresql -y
|
||||||
|
|
||||||
## Support tools and miscellaneous stuff
|
## Support tools and miscellaneous stuff
|
||||||
|
|
||||||
RUN rm -f /etc/cron.d/* /etc/cron.daily/* /etc/cron.hourly/* /etc/cron.monthly/* /etc/cron.weekly/*
|
RUN rm -f /etc/cron.d/* /etc/cron.daily/* /etc/cron.hourly/* /etc/cron.monthly/* /etc/cron.weekly/*
|
||||||
|
|
|
@ -5,7 +5,7 @@ version: '3'
|
||||||
vars:
|
vars:
|
||||||
REPO: harbor.hq.rosti.cz
|
REPO: harbor.hq.rosti.cz
|
||||||
REPO_PUBLIC: rosti/runtime
|
REPO_PUBLIC: rosti/runtime
|
||||||
VERSION: 2025.01-1
|
VERSION: 2025.04-1
|
||||||
BASEIMAGE: debian:bookworm
|
BASEIMAGE: debian:bookworm
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
|
|
|
@ -3,14 +3,14 @@
|
||||||
. ~/.bashrc
|
. ~/.bashrc
|
||||||
|
|
||||||
# DEFAULT VERSIONS
|
# DEFAULT VERSIONS
|
||||||
VERSION_NODE="23.6.0"
|
VERSION_NODE="23.11.0"
|
||||||
VERSION_PYTHON="3.13.1"
|
VERSION_PYTHON="3.13.2"
|
||||||
VERSION_PHP="8.4.3"
|
VERSION_PHP="8.4.6"
|
||||||
VERSION_RUBY="3.4.1"
|
VERSION_RUBY="3.4.3"
|
||||||
VERSION_DENO="2.1.6"
|
VERSION_DENO="2.3.1"
|
||||||
VERSION_BUN="1.1.45"
|
VERSION_BUN="1.2.11"
|
||||||
VERSION_OPENJDK="23.0.1"
|
VERSION_OPENJDK="24.0.1"
|
||||||
VERSION_GOLANG="1.23.5"
|
VERSION_GOLANG="1.24.2"
|
||||||
|
|
||||||
WIDTH=180
|
WIDTH=180
|
||||||
HEIGHT=25
|
HEIGHT=25
|
||||||
|
|
Loading…
Reference in a new issue