debug helper
Some checks failed
Build, Push and Deploy / build-and-deploy (push) Successful in 2m27s
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 8s

This commit is contained in:
eko
2026-03-22 10:18:30 +07:00
parent ddddec2b6d
commit 0b14ea2466
2 changed files with 789 additions and 9 deletions

View File

@@ -31,10 +31,6 @@ WORKDIR /var/www/html
# Copy all application files
COPY --chown=www-data:www-data . .
# Create the missing Helper file
RUN mkdir -p app/Helpers && \
echo "<?php\n\nnamespace App\Helpers;\n\nclass Helper\n{\n // Helper functions\n}\n" > app/Helpers/Helper.php
# CRITICAL: Create storage directories BEFORE composer install
RUN mkdir -p storage/framework/{cache,sessions,views} \
&& mkdir -p storage/logs \