diff --git a/README.md b/README.md index 440d256..a7d2c8c 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/docker_build/Dockerfile b/docker_build/Dockerfile index db3129b..01b8787 100644 --- a/docker_build/Dockerfile +++ b/docker_build/Dockerfile @@ -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/* diff --git a/spark-exec b/spark-exec index aa80d7e..6946582 100755 --- a/spark-exec +++ b/spark-exec @@ -2,7 +2,7 @@ if [[ "$(basename $(pwd))" == "igniter" ]]; then cd .. - ./art "$@" + ./spark-exec "$@" cd igniter exit fi