-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 🔨 Simplify Docker Setup * ⬆️ Require Nova 5 - Laravel ^10.34 or 11.* * 👷Update CI Test Matrix For Nova 5 * 👽️ Update Lens Request to match Nova 5 Signature * 👽️ Update Action Response Assertions and Tests to handle change in Nova 5 * 📝 Update installation notes for Nova 4 * ✨ Add assertion to open in new tab with specific path
- Loading branch information
1 parent
e42f237
commit 03e24d7
Showing
10 changed files
with
108 additions
and
56 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM phpdockerio/php:8.4-fpm | ||
WORKDIR "/srv" | ||
|
||
# Update and install necessary packages | ||
RUN apt-get update \ | ||
&& apt-get -y --no-install-recommends install \ | ||
git \ | ||
php8.4-xdebug \ | ||
sqlite3 \ | ||
libsqlite3-dev \ | ||
php8.4-sqlite3 \ | ||
php8.4-pdo \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* | ||
|
||
# Create a composer user and group | ||
RUN addgroup --gid 2000 composer && \ | ||
adduser --disabled-password --ingroup composer --uid 2000 composer |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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
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