11 lines
293 B
Docker
11 lines
293 B
Docker
FROM getgrav/grav:latest
|
|
|
|
# Copy custom files from Git
|
|
COPY blueprints/ /var/www/html/user/blueprints/
|
|
COPY plugins/ /var/www/html/user/plugins/
|
|
COPY config/ /var/www/html/user/config/
|
|
COPY pages/ /var/www/html/user/pages/
|
|
|
|
# Fix permissions
|
|
RUN chown -R www-data:www-data /var/www/html/user/
|