Add Dockerfile for PHP 8.4 environment setup

This commit is contained in:
2025-09-10 15:40:16 +02:00
parent fbfb6fc734
commit 83d6c6cbdc

22
docker/Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
# syntax=docker/dockerfile:1
FROM serversideup/php:8.4-unit-bookworm AS sbs_base
WORKDIR /
VOLUME /var
RUN apt-get update && apt-get install -y --no-install-recommends \
acl \
file \
gettext \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -eux; \
install-php-extensions \
@composer \
apcu \
intl \
opcache \
zip \
;