This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/Dockerfile
T

15 lines
499 B
Docker

###############################################################################
# EspoCRM - Development Server for Extensions
# Based on official image, overlays custom code on each deploy
###############################################################################
FROM espocrm/espocrm:latest
# Copy custom extensions and modifications
COPY custom/ /var/www/html/custom/
# Ensure correct permissions for custom dir
RUN chown -R www-data:www-data /var/www/html/custom
EXPOSE 80