Two commit

This commit is contained in:
yugovarkady
2026-02-25 19:49:35 +03:00
parent b99c93bec6
commit b3cdaf12d5
505 changed files with 208406 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
FROM composer:latest
WORKDIR /var/www/laravel
ENTRYPOINT ["composer", "--ignore-platform-reqs"]

View File

@@ -0,0 +1,7 @@
FROM php:8.2-fpm-alpine
WORKDIR /var/www/laravel
RUN apk add --no-cache postgresql-dev \
&& docker-php-ext-install pdo pdo_pgsql pgsql
RUN chown -R www-data:www-data /var/www/laravel