new gd compile, fix project_setup override
Some checks reported errors
continuous-integration/drone/push Build encountered an error

This commit is contained in:
Aleksander Cynarski 2021-10-10 14:58:05 +02:00
parent 20356998e3
commit a55353fbc8
Signed by: paramah
GPG Key ID: C4340BA42B9C173A
4 changed files with 61 additions and 59 deletions

View File

@ -37,22 +37,22 @@ steps:
# - master # - master
# depends_on: [ clone ] # depends_on: [ clone ]
# - name: php7.4 - name: php7.4
# image: plugins/docker image: plugins/docker
# settings: settings:
# username: username:
# from_secret: hub_username from_secret: hub_username
# password: password:
# from_secret: hub_password from_secret: hub_password
# repo: repo:
# from_secret: hub_repo from_secret: hub_repo
# build_args: build_args:
# - PHP_VERSION=7.4-fpm-alpine3.13 - PHP_VERSION=7.4-fpm-alpine3.13
# tags: 7.4-alpine tags: 7.4-alpine
# when: when:
# branch: branch:
# - master - master
# depends_on: [ clone ] depends_on: [ clone ]
# - name: php7.4-dev # - name: php7.4-dev
# image: plugins/docker # image: plugins/docker
@ -72,22 +72,22 @@ steps:
# - master # - master
# depends_on: [ clone ] # depends_on: [ clone ]
# - name: php7.3 - name: php7.3
# image: plugins/docker image: plugins/docker
# settings: settings:
# username: username:
# from_secret: hub_username from_secret: hub_username
# password: password:
# from_secret: hub_password from_secret: hub_password
# repo: repo:
# from_secret: hub_repo from_secret: hub_repo
# build_args: build_args:
# - PHP_VERSION=7.3-fpm-alpine3.13 - PHP_VERSION=7.3-fpm-alpine3.13
# tags: 7.3-alpine tags: 7.3-alpine
# when: when:
# branch: branch:
# - master - master
# depends_on: [ clone ] depends_on: [ clone ]
# - name: php7.3-dev # - name: php7.3-dev
# image: plugins/docker # image: plugins/docker
@ -107,19 +107,19 @@ steps:
# - master # - master
# depends_on: [ clone ] # depends_on: [ clone ]
# - name: php7.2 - name: php7.2
# image: plugins/docker image: plugins/docker
# settings: settings:
# username: username:
# from_secret: hub_username from_secret: hub_username
# password: password:
# from_secret: hub_password from_secret: hub_password
# repo: repo:
# from_secret: hub_repo from_secret: hub_repo
# build_args: build_args:
# - PHP_VERSION=7.2-fpm-alpine3.12 - PHP_VERSION=7.2-fpm-alpine3.12
# tags: 7.2-alpine tags: 7.2-alpine
# when: when:
# branch: branch:
# - master - master
# depends_on: [ clone ] depends_on: [ clone ]

View File

@ -50,7 +50,7 @@ ARG ENVIRONMENT=production
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && apk update RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && apk update
# install system libs # install system libs
RUN apk add --no-cache libintl c-client libpng icu-libs libldap libpq libjpeg freetype libzip shadow sudo wget bash git openssh supervisor nginx openssl zip fluent-bit \ RUN apk add --no-cache libintl c-client libpng icu-libs libldap libpq libjpeg libwebp freetype libzip shadow sudo wget bash git openssh supervisor nginx openssl zip fluent-bit \
&& apk --no-cache upgrade && rm -rf /var/cache/apk/* && apk --no-cache upgrade && rm -rf /var/cache/apk/*
ENV DIR /var/www ENV DIR /var/www

View File

@ -1,7 +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", "zip") PHP_MODULES=("calendar" "bcmath" "bz2" "curl" "fileinfo" "gettext" "iconv" "imap" "intl" "ldap" "mbstring" "opcache" "pcntl" "pdo" "pdo_mysql" "pdo_pgsql" "pdo_sqlite" "pgsql" "phar" "session" "simplexml" "soap" "xml", "zip")
# #
# Helper functions # Helper functions
@ -26,25 +26,26 @@ h2() {
h1 "Configure PHP modules" h1 "Configure PHP modules"
case $PHP_VERSION in case $PHP_VERSION in
'80' ) '80' )
h2 "[php8] Configure GD" h2 "[php8] Configure and install GD"
docker-php-ext-configure gd \ docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp --enable-gd
--with-freetype \ docker-php-ext-install -j$(nproc) gd
--with-jpeg \
--with-webp
;; ;;
'74' ) '74' )
h2 "[php74] Configure GD" h2 "[php74] Configure and install GD"
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp docker-php-ext-configure gd --enable-gd --with-freetype --with-jpeg --with-webp
docker-php-ext-install -j$(nproc) gd
h2 "Install json module" h2 "Install json module"
docker-php-ext-install -j$(nproc) json docker-php-ext-install -j$(nproc) json
;; ;;
* ) * )
h2 "Configure GD" h2 "Configure and install GD"
docker-php-ext-configure gd \ docker-php-ext-configure gd \
--with-freetype-dir=/usr/lib/ \ --with-freetype-dir=/usr/lib/ \
--with-png-dir=/usr/lib/ \ --with-png-dir=/usr/lib/ \
--with-jpeg-dir=/usr/lib/ \ --with-jpeg-dir=/usr/lib/ \
--with-gd --with-gd
docker-php-ext-install -j$(nproc) gd
h2 "Install json module" h2 "Install json module"
docker-php-ext-install -j$(nproc) json docker-php-ext-install -j$(nproc) json
break break

View File

@ -1,5 +1,6 @@
#!/bin/sh #!/bin/sh
if [ -f /var/www/override.ini && -f /usr/local/etc/php/conf.d/02-project-override.ini ]; then if [ -f /var/www/override.ini ]; then
rm /usr/local/etc/php/conf.d/02-project-override.ini
ln -s /var/www/override.ini /usr/local/etc/php/conf.d/02-project-override.ini ln -s /var/www/override.ini /usr/local/etc/php/conf.d/02-project-override.ini
fi fi