all modules, alpine version hardcode
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Aleksander Cynarski 2021-07-02 21:42:59 +02:00
parent 5597364860
commit 7cab29a384
Signed by: paramah
GPG Key ID: C4340BA42B9C173A
3 changed files with 4 additions and 3 deletions

View File

@ -124,7 +124,7 @@ steps:
repo: repo:
from_secret: hub_repo from_secret: hub_repo
build_args: build_args:
- PHP_VERSION=7.2-fpm-alpine3.13 - PHP_VERSION=7.2-fpm-alpine3.12
tags: 7.2-alpine tags: 7.2-alpine
when: when:
branch: branch:

View File

@ -1,5 +1,7 @@
ARG PHP_VERSION=7.4-fpm-alpine3.13 ARG PHP_VERSION=7.4-fpm-alpine3.13
FROM paramah/base:alpine as base-config
# #
# Build php extenstions # Build php extenstions
# #

View File

@ -1,8 +1,7 @@
#!/bin/bash #!/bin/bash
PHP_VERSION=`php -r 'echo PHP_MAJOR_VERSION.PHP_MINOR_VERSION;'` PHP_VERSION=`php -r 'echo PHP_MAJOR_VERSION.PHP_MINOR_VERSION;'`
#PHP_MODULES=("calendar" "bcmath" "bz2" "curl" "fileinfo" "gd" "gettext" "iconv" "imap" "intl" "ldap" "mbstring" "opcache" "pcntl" "pdo" "pdo_mysql" "pdo_pgsql" "pdo_sqlite" "pgsql" "phar" "session" "simplexml" "soap" "xml") PHP_MODULES=("calendar" "bcmath" "bz2" "curl" "fileinfo" "gd" "gettext" "iconv" "imap" "intl" "ldap" "mbstring" "opcache" "pcntl" "pdo" "pdo_mysql" "pdo_pgsql" "pdo_sqlite" "pgsql" "phar" "session" "simplexml" "soap" "xml")
PHP_MODULES=("calendar")
# #
# Helper functions # Helper functions