diff --git a/.dockerignore b/.dockerignore index a345ea06..542ec9ad 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,9 +1,11 @@ /.git /.github +/.githooks /.husky /.idea /.vscode /bootstrap/cache/*.php +/bootstrap/ssr /coverage /node_modules /public/assets @@ -23,7 +25,16 @@ _ide_helper_models.php _ide_helper.php .DS_Store +.dockerignore .env +.env.* +.gitattributes +.gitignore +.nvmrc +.php-cs-fixer.dist.php +.prettierrc +.editorconfig +jsconfig.json .php_cs.cache .php-cs-fixer.cache .phpstorm.meta.php diff --git a/Dockerfile b/Dockerfile index 9a63df13..b043859e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,6 +67,7 @@ COPY docker/php/www.conf /usr/local/etc/php-fpm.d/zz-docker.conf COPY docker/s6-rc.d /etc/s6-overlay/s6-rc.d COPY --from=assets --chown=www-data:www-data /build/public/build /var/www/public/build +COPY --from=assets /build/bootstrap/ssr /var/www/bootstrap/ssr COPY --from=assets /build/node_modules /var/www/node_modules COPY --from=assets /usr/lib /usr/lib COPY --from=assets /usr/local/share /usr/local/share