-
Notifications
You must be signed in to change notification settings - Fork 1.5k
PHPORM-31 Split documentation into multiple files #2610
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,14 +8,12 @@ RUN apt-get update && \ | |
pecl install xdebug && docker-php-ext-enable xdebug && \ | ||
docker-php-ext-install -j$(nproc) pdo_mysql zip | ||
|
||
COPY --from=composer:2.5.8 /usr/bin/composer /usr/local/bin/composer | ||
COPY --from=composer:2.6.2 /usr/bin/composer /usr/local/bin/composer | ||
|
||
ENV COMPOSER_ALLOW_SUPERUSER=1 | ||
|
||
WORKDIR /code | ||
|
||
COPY ./ ./ | ||
|
||
ENV COMPOSER_ALLOW_SUPERUSER=1 | ||
|
||
RUN composer install | ||
|
||
CMD ["./vendor/bin/phpunit", "--testdox"] | ||
CMD ["bash", "-c", "composer install && ./vendor/bin/phpunit --testdox"] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Out of curiosity, what's the advantage of moving There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The working directory is mounted into the container by docker-compose, so dependencies installed the docker image are ignored. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see, thanks for explaining! |
Uh oh!
There was an error while loading. Please reload this page.