-
Notifications
You must be signed in to change notification settings - Fork 41
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 #158 from leroy-merlin-br/chore/bump-mongolid-version
chore(deps): bump mongolid to v3.4
- Loading branch information
Showing
35 changed files
with
1,018 additions
and
434 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,6 @@ jobs: | |
strategy: | ||
matrix: | ||
php: | ||
- "7.3" | ||
- "7.4" | ||
- "8.0" | ||
- "8.1" | ||
|
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 |
---|---|---|
|
@@ -4,3 +4,4 @@ build | |
.phpunit.result.cache | ||
phpcs.xml | ||
.idea | ||
docker-compose.override.yml |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,19 +1,39 @@ | ||
FROM leroymerlinbr/php:7.3 | ||
FROM php:7.4-fpm | ||
LABEL maintainer="[email protected]" | ||
|
||
USER root:root | ||
|
||
RUN docker-php-ext-enable xdebug | ||
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer | ||
|
||
RUN apt-get update -qq \ | ||
&& apt-get install -qq --no-install-recommends \ | ||
git zip unzip \ | ||
libzip-dev libssl-dev \ | ||
zlib1g-dev libicu-dev \ | ||
&& apt-get clean | ||
|
||
RUN pecl install xdebug-3.1.6 mongodb \ | ||
&& docker-php-ext-enable \ | ||
mongodb xdebug \ | ||
&& docker-php-ext-configure \ | ||
intl \ | ||
&& docker-php-ext-install \ | ||
intl pcntl zip \ | ||
&& rm -rf /tmp/* | ||
|
||
ARG UID=1000 | ||
ARG GID=1000 | ||
|
||
RUN groupmod -g ${GID} www-data \ | ||
&& usermod -u ${UID} -g www-data www-data \ | ||
&& mkdir -p /var/www/html \ | ||
&& chown -hR www-data:www-data \ | ||
/var/www \ | ||
/usr/local/ | ||
|
||
COPY custom.ini /usr/local/etc/php/conf.d/custom.ini | ||
|
||
USER www-data:www-data | ||
|
||
WORKDIR /var/www/html | ||
ENV PATH=$PATH:/var/www/.composer/vendor/bin |
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
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
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
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
Oops, something went wrong.