modified Dockerfile

main
RadioParalelo 2026-03-04 23:25:59 +00:00
parent 38c2793a3a
commit ee08809fa9
1 changed files with 4 additions and 4 deletions

View File

@ -40,8 +40,6 @@ RUN composer install --no-dev --optimize-autoloader && \
# ------------------------------------------------- # -------------------------------------------------
# 7⃣ Copy your custom theme (already built) # 7⃣ Copy your custom theme (already built)
# ------------------------------------------------- # -------------------------------------------------
# The folder `indy-wp/indywp/` should contain the final theme
# structure, including a toplevel `style.css`.
COPY indy-wp/indywp/ /var/www/html/wp-content/themes/indywp/ COPY indy-wp/indywp/ /var/www/html/wp-content/themes/indywp/
# ------------------------------------------------- # -------------------------------------------------
@ -50,9 +48,11 @@ COPY indy-wp/indywp/ /var/www/html/wp-content/themes/indywp/
COPY indy-wp/media/ /var/www/html/wp-content/themes/indywp/images/ COPY indy-wp/media/ /var/www/html/wp-content/themes/indywp/images/
# ------------------------------------------------- # -------------------------------------------------
# 9(Optional) copy any extra project files you need # 9Copy any muplugins (mustuse) **default folder**
# ------------------------------------------------- # -------------------------------------------------
#COPY yourproject/ /var/www/html/wp-content/mu-plugins/ # Anything placed in the local `mu-plugins/` directory will be
# loaded automatically by WordPress on every request.
COPY mu-plugins/ /var/www/html/wp-content/mu-plugins/
# ------------------------------------------------- # -------------------------------------------------
# 🔟 Ensure wpcontent is writable by www-data # 🔟 Ensure wpcontent is writable by www-data