prod commit

This commit is contained in:
2022-04-04 07:55:44 +05:30
commit 7c3f93e0d0
1377 changed files with 12171 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
FROM php:8.0-apache
RUN apt update \
&& apt install -y \
g++ \
libicu-dev \
libpq-dev \
libzip-dev \
zip \
zlib1g-dev \
&& docker-php-ext-install \
intl \
opcache \
pdo \
pdo_pgsql \
pgsql
WORKDIR /var/www/laravel_docker
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer