fix dockerfile by removing arch

This commit is contained in:
Aaron Riedel 2024-03-17 12:48:35 +01:00
parent 68ca02c8a4
commit 9033a4c828
Signed by: aaron
GPG key ID: 643004654D40D577

View file

@ -1,4 +1,4 @@
FROM amd64/php:8.3.2-apache-bullseye
FROM php:8.3.2-apache-bullseye
RUN apt-get update -qq && apt-get install -qq libmagickwand-dev --no-install-recommends && rm -rf /var/lib/apt/lists/*
RUN printf "\n" | pecl install imagick
RUN docker-php-ext-install mysqli pdo pdo_mysql && docker-php-ext-enable pdo_mysql imagick