create route

This commit is contained in:
2025-08-11 17:09:05 +03:30
parent 7c21bcf960
commit c0739a534b
9 changed files with 34 additions and 22 deletions

View File

@@ -2,6 +2,7 @@ FROM docker.arvancloud.ir/php:8.3-fpm-alpine3.21
# Install common PHP extension dependencies
RUN apk update && apk add --no-cache \
git \
bash \
nano \
curl \
@@ -25,6 +26,7 @@ RUN chmod -R 777 /var/www/laravel/storage /var/www/laravel/bootstrap/cache
# Install Composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
ENV COMPOSER_ALLOW_SUPERUSER=1
# Default command
CMD composer install \