Skip to content

Commit

Permalink
php 8.3 update
Browse files Browse the repository at this point in the history
  • Loading branch information
migasQ committed Dec 23, 2024
1 parent 62055be commit e9025a8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ services:
- ${MYSQL_DATA}:/var/lib/mysql

traefik:
image: traefik:2.8
image: traefik:2
container_name: traefik
ports:
- 80:80
Expand Down
12 changes: 6 additions & 6 deletions php/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.1-fpm
FROM php:8.3-fpm

ARG UID=1000
ARG GID=1000
Expand All @@ -7,13 +7,13 @@ RUN usermod -u $UID -o www-data && groupmod -g $GID -o www-data
COPY php.ini $PHP_INI_DIR/php.ini

RUN apt-get update && apt-get install -y \
libfreetype6-dev libjpeg62-turbo-dev libpng-dev \
libfreetype-dev libjpeg62-turbo-dev libpng-dev \
libicu-dev \
zip libzip-dev \
libxml2-dev && \
docker-php-ext-configure \
gd --with-freetype --with-jpeg && \
docker-php-ext-install -j$(nproc) \
libxml2-dev
RUN docker-php-ext-configure \
gd --with-freetype --with-jpeg
RUN docker-php-ext-install -j$(nproc) \
gd \
intl \
zip \
Expand Down

0 comments on commit e9025a8

Please sign in to comment.