add old docker folder

This commit is contained in:
2026-01-27 14:10:19 +01:00
parent 3de54dc63f
commit a14ca16f18
7 changed files with 169 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM php:8.4-fpm
RUN apt-get update && apt-get install -y \
git unzip libzip-dev libpng-dev libonig-dev \
&& docker-php-ext-install pdo_mysql zip pcntl
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
COPY ./entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
WORKDIR /var/www/app
ENTRYPOINT ["entrypoint.sh"]
CMD ["php-fpm"]