Compare commits

...

2 Commits

Author SHA1 Message Date
Adam Štrauch 34cdc771d2
Fix redis config
continuous-integration/drone/push Build is failing Details
2023-10-27 00:54:55 +02:00
Adam Štrauch b007620e8d
PHP 7.4.33 on Debian 11
continuous-integration/drone/push Build is passing Details
2023-09-19 23:47:33 +02:00
5 changed files with 16 additions and 18 deletions

View File

@ -1,4 +1,4 @@
FROM debian:bookworm
FROM debian:bullseye
RUN DEBIAN_FRONTEND=noninteractive apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get upgrade -y
@ -49,33 +49,33 @@ RUN build_node.sh 16.20.2
RUN build_node.sh 17.9.1
RUN build_node.sh 19.9.0
RUN build_node.sh 18.17.1
RUN build_node.sh 20.5.1
RUN build_node.sh 20.6.1
## Python
WORKDIR /usr/src
ADD build_python.sh /usr/local/bin/build_python.sh
# 2023/08
RUN build_python.sh 3.9.17
RUN build_python.sh 3.10.12
RUN build_python.sh 3.11.4
RUN build_python.sh 3.11.5
## PHP 7
ADD build_php.sh /usr/local/bin/build_php.sh
RUN build_php.sh 7.4.33
## PHP 8
ADD build_php8.sh /usr/local/bin/build_php8.sh
# 2023/08
RUN build_php8.sh 8.1.21
RUN build_php8.sh 8.2.7
RUN build_php8.sh 8.2.9
## Ruby
WORKDIR /usr/src
ADD build_ruby.sh /usr/local/bin/build_ruby.sh
# 2023/08
RUN build_ruby.sh 3.1.4
RUN build_ruby.sh 3.2.2
## Deno
ADD build_deno.sh /usr/local/bin/build_deno.sh
# 2023/08
RUN build_deno.sh 1.36.1
RUN build_deno.sh 1.36.4
#############

View File

@ -3,9 +3,8 @@
version: '3'
vars:
GREETING: Hello, World!
REPO: harbor.hq.rosti.cz/rosti/runtime
VERSION: 2023.08-1
VERSION: 2023.04-2
BASEIMAGE: debian:bookworm
tasks:
@ -36,5 +35,3 @@ tasks:
push:
cmds:
- docker push {{ .REPO }}:{{ .VERSION }}
deps:
- squashed

View File

@ -78,6 +78,7 @@ cd -
echo "no" | /opt/techs/php-$VERSION/bin/pecl install redis
echo "no" | /opt/techs/php-$VERSION/bin/pecl install imagick
echo "no" | /opt/techs/php-$VERSION/bin/pecl install memcached
echo "zend_extension=opcache.so" > /opt/techs/php-$VERSION/etc/conf.d/extensions.ini
echo "extension=redis.so" >> /opt/techs/php-$VERSION/etc/conf.d/extensions.ini

View File

@ -3,11 +3,11 @@
. ~/.bashrc
# DEFAULT VERSIONS
VERSION_PYTHON="3.11.4"
VERSION_PHP="8.2.7"
VERSION_NODE="18.17.1"
VERSION_PYTHON="3.11.5"
VERSION_PHP="8.2.9"
VERSION_NODE="20.6.1"
VERSION_RUBY="3.2.2"
VERSION_DENO="1.36.1"
VERSION_DENO="1.36.4"
WIDTH=180
HEIGHT=25

View File

@ -2,7 +2,7 @@
mkdir -p /srv/var/redis
mkdir -p /srv/run
cp /opt/conf/redis.conf /srv/conf/
cp /opt/examples/redis/redis.conf /srv/conf/
cat << EOF > /srv/conf/supervisor.d/redis.conf
[program:redis]