change installation method
This commit is contained in:
parent
90d8bb6baa
commit
0a6cdebe93
2 changed files with 6 additions and 5 deletions
|
@ -13,7 +13,7 @@ steps:
|
||||||
repo: git.ar21.de/aaron/php-apache-mysql
|
repo: git.ar21.de/aaron/php-apache-mysql
|
||||||
tags: latest
|
tags: latest
|
||||||
platforms:
|
platforms:
|
||||||
#- linux/arm64
|
- linux/arm64
|
||||||
- linux/amd64
|
- linux/amd64
|
||||||
when:
|
when:
|
||||||
branch:
|
branch:
|
||||||
|
@ -30,7 +30,7 @@ steps:
|
||||||
repo: git.ar21.de/aaron/php-apache-mysql
|
repo: git.ar21.de/aaron/php-apache-mysql
|
||||||
tags: latest
|
tags: latest
|
||||||
platforms:
|
platforms:
|
||||||
#- linux/arm64
|
- linux/arm64
|
||||||
- linux/amd64
|
- linux/amd64
|
||||||
dry_run: true
|
dry_run: true
|
||||||
when:
|
when:
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
FROM php:8.3.4-apache-bullseye
|
FROM php:8.3.4-apache-bullseye
|
||||||
RUN apt-get update -qq && apt-get install -qq libmagickwand-dev --no-install-recommends && rm -rf /var/lib/apt/lists/*
|
RUN apt-get update -qq && apt-get install -qq libmagickwand-dev libpng-dev libjpeg-dev libtiff-dev imagemagick --no-install-recommends && rm -rf /var/lib/apt/lists/*
|
||||||
RUN printf "\n" | pecl install imagick
|
RUN pecl install imagick
|
||||||
RUN docker-php-ext-install mysqli pdo pdo_mysql && docker-php-ext-enable pdo_mysql imagick
|
RUN docker-php-ext-install mysqli pdo pdo_mysql
|
||||||
|
RUN docker-php-ext-enable mysqli pdo pdo_mysql imagick
|
Loading…
Reference in a new issue