Compare commits

..

4 commits

Author SHA1 Message Date
e8b8238600 add disclaimer to README.md 2025-04-09 19:24:35 +02:00
376536ebc3 improve code quality in Dockerfile 2025-04-09 18:49:45 +02:00
89d9c5bcb3 fix Dockerfile 2025-04-09 18:45:48 +02:00
384233895b fix spark-exec 2025-04-09 16:15:02 +02:00
3 changed files with 5 additions and 4 deletions

View file

@ -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 ## Idea
This Project aims to simplify setting up a laravel project in a local development environment for new and experienced developers. This Project aims to simplify setting up a laravel project in a local development environment for new and experienced developers.

View file

@ -1,6 +1,4 @@
FROM composer AS composer FROM composer AS composer
FROM php:8.2-cli FROM php:8.2-cli
COPY --from=composer /usr/bin/composer /usr/bin/composer COPY --from=composer /usr/bin/composer /usr/bin/composer
@ -20,7 +18,7 @@ RUN apt-get update \
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y "$(cat add_pkgs | head -n 1)" || true \ && 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-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 \ && apt-get autoclean -y \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*

View file

@ -2,7 +2,7 @@
if [[ "$(basename $(pwd))" == "igniter" ]]; then if [[ "$(basename $(pwd))" == "igniter" ]]; then
cd .. cd ..
./art "$@" ./spark-exec "$@"
cd igniter cd igniter
exit exit
fi fi