-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Simone Fantini
committed
Aug 26, 2024
1 parent
4af483e
commit 344fd9e
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,16 +4,16 @@ LABEL author="Simone Fantini" | |
LABEL email="[email protected]" | ||
|
||
# PHP ENV | ||
ENV PHPVER 8.2 | ||
ENV PHP_MAX_CHILDREN 10 | ||
ENV PHP_MAX_REQUESTS 400 | ||
ENV PHP_REQUEST_TIMEOUT 300 | ||
ENV PHP_MEMORY_LIMIT 756M | ||
ENV PHP_CLI_MEMORY_LIMIT 756M | ||
ENV PHPVER=8.2 | ||
ENV PHP_MAX_CHILDREN=10 | ||
ENV PHP_MAX_REQUESTS=400 | ||
ENV PHP_REQUEST_TIMEOUT=300 | ||
ENV PHP_MEMORY_LIMIT=756M | ||
ENV PHP_CLI_MEMORY_LIMIT=756M | ||
|
||
# SYS ENV | ||
ENV TZ Europe/Rome | ||
ENV DEBIAN_FRONTEND noninteractive | ||
ENV TZ=Europe/Rome | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN \ | ||
ls -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \ | ||
|