Skip to content

Commit 41e52c6

Browse files
committed
Update default timezone to UTC and update PHP version to 8.2.11
1 parent 0575d4b commit 41e52c6

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
Tags come from PHP version installed + specific indication if needed.
44
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.
55

6+
## 8.2.11
7+
Update date : 12/10/2023
8+
9+
Update PHP to 8.2.11
10+
11+
- Using UTC default timezone
12+
13+
614
## 8.2.10
715
Update date : 18/09/2023
816

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM composer:2.5.8 AS composer
22

3-
FROM php:8.2.10-fpm
3+
FROM php:8.2.11-fpm
44

55
ARG APCU_VERSION=5.1.22
66
ENV COMPOSER_ALLOW_SUPERUSER 1
@@ -32,7 +32,7 @@ RUN apt-get --allow-releaseinfo-change update -qq && apt-get install -qqy \
3232
libbz2-dev \
3333
libpq-dev \
3434
libwebp-dev \
35-
&& echo "Europe/Paris" > /etc/timezone && dpkg-reconfigure -f noninteractive tzdata \
35+
&& echo UTC > /etc/timezone && dpkg-reconfigure -f noninteractive tzdata \
3636
&& echo 'alias ll="ls -lah --color=auto"' >> /etc/bash.bashrc \
3737
&& docker-php-ext-configure intl \
3838
&& docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ --with-webp \

php/php.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ post_max_size=50M
33
upload_max_filesize=50M
44
error_reporting = E_ALL
55
max_execution_time = 30
6-
date.timezone=Europe/Paris
6+
date.timezone=UTC
77
default_charset = "utf-8"
88
short_open_tag = Off
99
display_errors=Off

0 commit comments

Comments
 (0)