Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. FROM wordpress:php7.1-apache
  2.  
  3. ### This is where you copy all the plugins and themes to the corresponding folders
  4. COPY my-theme /themes/my-theme
  5. COPY my-plugin /plugins/my-plugin
  6.  
  7. COPY entrypoint.sh /usr/bin/entrypoint
  8.  
  9. RUN chmod +x /usr/bin/entrypoint
  10.  
  11. ENV PROJECT_ROOT=/var/www/html THEME_FOLDER=/themes PLUGIN_FOLDER=/plugins
  12.  
  13. ENTRYPOINT ["entrypoint"]
  14.  
  15. CMD ["apache2-foreground"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement