15 lines
499 B
Docker
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
|