Skip to content

Commit

Permalink
Fix file permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
kberzinch committed Apr 14, 2024
1 parent f26a5b8 commit b236eee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ RUN --mount=type=secret,id=composer_auth,dst=/app/auth.json,uid=33,gid=33,requir
composer install --no-interaction --no-progress --no-dev --optimize-autoloader --classmap-authoritative --no-cache && \
mkdir --parents /app/resources/views/ && \
php artisan horizon:publish && \
sed -i '/"\$1\\n\$2"/c\\' /app/vendor/mrclay/minify/lib/Minify/HTML.php;
sed -i '/"\$1\\n\$2"/c\\' /app/vendor/mrclay/minify/lib/Minify/HTML.php \
chmod 664 /app/bootstrap/app.php /app/public/index.php && \
chmod 775 /app/bootstrap/cache/

# This target is the default, but skipped during pull request builds and in our recommended local build invocation
# precompressed_assets var on the Nomad job must match whether this stage ran or not
Expand Down

0 comments on commit b236eee

Please sign in to comment.