added php 8.3
This commit is contained in:
15
8.3/Dockerfile
Normal file
15
8.3/Dockerfile
Normal file
@ -0,0 +1,15 @@
|
||||
FROM php:8.3-fpm-bullseye
|
||||
|
||||
# Set build shell to bash, default has has some issues sometimes
|
||||
SHELL ["/bin/bash", "-c"]
|
||||
|
||||
# Install basic tools
|
||||
## libzip-dev is required for php-zip
|
||||
## libfreetype6-dev libjpeg62-turbo-dev are required for php-gd
|
||||
RUN apt update \
|
||||
&& apt install curl nano iputils-ping libzip-dev zip unzip libfreetype6-dev libjpeg62-turbo-dev -y --no-install-recommends \
|
||||
&& apt auto-remove -y \
|
||||
&& apt clean -y
|
||||
|
||||
# Copy php.ini config
|
||||
COPY php.ini /usr/local/etc/php/php.ini
|
Reference in New Issue
Block a user