-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from mihaileu/feature/migrate-to-phpunit10
remove support for php 7.4 and 8.0, and migrate to phpunit 10
- Loading branch information
Showing
6 changed files
with
31 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,21 @@ | ||
FROM php:8.0-alpine | ||
FROM php:8.3-alpine | ||
|
||
WORKDIR /var/www/html | ||
|
||
RUN apk update \ | ||
&& apk upgrade \ | ||
&& apk add --no-cache git zip make autoconf g++ openssl-dev | ||
&& apk add --no-cache git zip make autoconf g++ openssl-dev linux-headers \ | ||
&& apk add --no-cache --virtual .build-deps $PHPIZE_DEPS | ||
|
||
RUN pecl -q install mongodb-1.9.1 xdebug \ | ||
&& docker-php-ext-enable mongodb | ||
RUN pecl -q install mongodb-1.17.2 \ | ||
&& docker-php-ext-enable mongodb \ | ||
&& pecl -q install xdebug \ | ||
&& docker-php-ext-enable xdebug | ||
|
||
ENV COMPOSER_MEMORY_LIMIT=-1 | ||
|
||
RUN curl --silent --show-error https://getcomposer.org/installer | php \ | ||
&& mv composer.phar /usr/local/bin/composer \ | ||
&& chmod o+x /usr/local/bin/composer | ||
&& chmod o+x /usr/local/bin/composer | ||
|
||
ENTRYPOINT ["tail", "-f", "/dev/null"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters