-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from Justintime50/vite
chore: migrate webpack to vite
- Loading branch information
Showing
17 changed files
with
592 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
FROM justintime50/nginx-php:8.1-11 | ||
FROM justintime50/nginx-php:8.1-14 | ||
|
||
COPY --chown=www-data:www-data ./src /var/www/html | ||
|
||
RUN composer install -q --no-ansi --no-interaction --no-scripts --no-plugins --no-progress --prefer-dist \ | ||
# Setup Laravel | ||
&& chmod -R 755 storage bootstrap/cache \ | ||
&& php artisan storage:link \ | ||
&& php artisan optimize:clear | ||
&& php artisan optimize:clear \ | ||
&& npm install -s \ | ||
&& npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.