delete excel module

This commit is contained in:
2025-08-02 09:05:12 +03:30
parent 18675030a0
commit 76653c447a
5 changed files with 13 additions and 988 deletions

View File

@@ -1,6 +1,6 @@
FROM docker.arvancloud.ir/php:8.3-fpm-alpine3.21
FROM docker.arvancloud.ir/php:8.3-fpm-alpine3.21
# Install common php extension dependencies
# Install common PHP extension dependencies
RUN apk update && apk add --no-cache \
bash \
nano \
@@ -8,13 +8,14 @@ RUN apk update && apk add --no-cache \
libpng \
libpng-dev \
libjpeg-turbo-dev \
libwebp \
freetype-dev \
libwebp-dev \
libxml2-dev \
unzip \
libzip-dev \
libpq-dev \
&& docker-php-ext-install pdo_pgsql
&& docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp \
&& docker-php-ext-install pdo_pgsql gd zip
# Set the working directory
WORKDIR /var/www/laravel
@@ -22,13 +23,12 @@ COPY . .
RUN chmod -R 777 /var/www/laravel/storage /var/www/laravel/bootstrap/cache
# install composer
# Install Composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
# Set the default command to run php-fpm
CMD composer install;\
php artisan key:generate;\
php artisan migrate ;\
php artisan db:seed;\
php-fpm
# Default command
CMD composer install \
&& php artisan key:generate \
&& php artisan migrate \
&& php artisan db:seed \
&& php-fpm