update reverb container

This commit is contained in:
2026-02-24 15:46:57 +01:00
parent 2c028bcfc1
commit 1fcc0365fa
2 changed files with 26 additions and 6 deletions
+24
View File
@@ -0,0 +1,24 @@
FROM php:8.4-fpm
RUN apt-get update && apt-get install -y \
git \
unzip \
libzip-dev \
libpng-dev \
libonig-dev \
libxml2-dev \
&& docker-php-ext-install \
pdo \
pdo_mysql \
mbstring \
xml \
pcntl \
sockets \
zip \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
WORKDIR /var/www/app
EXPOSE 8080