Skip to content

Commit

Permalink
upgrade to php 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerrialn committed Nov 17, 2023
1 parent a91d9fa commit 3c171d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions php/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM php:8.1-fpm AS symfony_php
FROM php:8.2-fpm AS symfony_php

# persistent / runtime deps
RUN apt-get update && apt-get install -y \
git \
zip

COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
COPY --from=mlocati/php-extension-installer:1.5.16 /usr/bin/install-php-extensions /usr/local/bin/
COPY --from=mlocati/php-extension-installer:2.1.65 /usr/bin/install-php-extensions /usr/local/bin/

RUN install-php-extensions \
intl \
Expand All @@ -16,7 +16,7 @@ RUN install-php-extensions \
imagick \
uuid \
opcache \
xdebug-^3.1
xdebug-^3.3

COPY docker-healthcheck.sh /usr/local/bin/docker-healthcheck
RUN chmod +x /usr/local/bin/docker-healthcheck
Expand Down

0 comments on commit 3c171d4

Please sign in to comment.