mirror of
https://github.com/Yannick7777/codeigniter-setup-script.git
synced 2025-09-09 07:43:03 +02:00
Compare commits
4 commits
b67ce8f2d0
...
e8b8238600
Author | SHA1 | Date | |
---|---|---|---|
e8b8238600 | |||
376536ebc3 | |||
89d9c5bcb3 | |||
384233895b |
3 changed files with 5 additions and 4 deletions
|
@ -1,3 +1,6 @@
|
|||
## DISCLAIMER
|
||||
This is the documentation of the original Script I wrote for Laravel. Many of the things here do apply to the setup with codeigniter as well, definitely not all though. This documentation will be adapted as soon as development slows down as the name of the scripts and their content are still subject to change.
|
||||
|
||||
## Idea
|
||||
This Project aims to simplify setting up a laravel project in a local development environment for new and experienced developers.
|
||||
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
FROM composer AS composer
|
||||
|
||||
|
||||
FROM php:8.2-cli
|
||||
|
||||
COPY --from=composer /usr/bin/composer /usr/bin/composer
|
||||
|
@ -20,7 +18,7 @@ RUN apt-get update \
|
|||
RUN apt-get update \
|
||||
&& apt-get install -y "$(cat add_pkgs | head -n 1)" || true \
|
||||
&& docker-php-ext-install "$(cat install_ext | head -n 1)" || true \
|
||||
&& docker-php-ext-enable "$(cat enable_ext | head -n 0)" || true \
|
||||
&& docker-php-ext-enable "$(cat enable_ext | head -n 1)" || true \
|
||||
&& apt-get autoclean -y \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
if [[ "$(basename $(pwd))" == "igniter" ]]; then
|
||||
cd ..
|
||||
./art "$@"
|
||||
./spark-exec "$@"
|
||||
cd igniter
|
||||
exit
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue