diff --git a/dockerfile b/dockerfile index 340ff17..a597f42 100644 --- a/dockerfile +++ b/dockerfile @@ -16,4 +16,11 @@ COPY . . # Bağımlılıkları yükleyin RUN composer install +# Dosya izinlerini ayarlama +RUN chown -R www-data:www-data /var/www && \ + chmod -R 755 /var/www && \ + chmod -R 775 /var/www/storage && \ + chmod -R 775 /var/www/storage/app/private && \ + chmod -R 775 /var/www/storage/app/private/scribe + # ... mevcut kod ... \ No newline at end of file