diff --git a/Dockerfile b/Dockerfile index ef6fc12..6a97441 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN apk add --update \ RUN curl -sS https://getcomposer.org/composer-stable.phar -o /usr/bin/composer && chmod +x /usr/bin/composer # Using the ENV variable within the RUN command -RUN cd "$APP_DIR" && composer install +RUN cd "$APP_DIR" && composer install -v --ignore-platform-reqs WORKDIR $APP_DIR CMD php artisan serve --host=0.0.0.0 --port=$APP_PORT