Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
Tags come from PHP version installed + specific indication if needed.
Be careful : the list is ordered by more recent tag first, not php version it-self, as recent version may include fixes and are added only if needed.

## 8.2.11
Update date : 12/10/2023

Update PHP to 8.2.11

- Using UTC default timezone


## 8.2.10
Update date : 18/09/2023

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM composer:2.5.8 AS composer

FROM php:8.2.10-fpm
FROM php:8.2.11-fpm

ARG APCU_VERSION=5.1.22
ENV COMPOSER_ALLOW_SUPERUSER 1
Expand Down Expand Up @@ -32,7 +32,7 @@ RUN apt-get --allow-releaseinfo-change update -qq && apt-get install -qqy \
libbz2-dev \
libpq-dev \
libwebp-dev \
&& echo "Europe/Paris" > /etc/timezone && dpkg-reconfigure -f noninteractive tzdata \
&& echo UTC > /etc/timezone && dpkg-reconfigure -f noninteractive tzdata \
&& echo 'alias ll="ls -lah --color=auto"' >> /etc/bash.bashrc \
&& docker-php-ext-configure intl \
&& docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ --with-webp \
Expand Down
2 changes: 1 addition & 1 deletion php/php.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ post_max_size=50M
upload_max_filesize=50M
error_reporting = E_ALL
max_execution_time = 30
date.timezone=Europe/Paris
date.timezone=UTC
default_charset = "utf-8"
short_open_tag = Off
display_errors=Off
Expand Down