-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- changed minimal PHP version to `8.3` - dropped support for Latte v2 - dropped support for symfony components v5 and v6
- Loading branch information
Showing
10 changed files
with
46 additions
and
106 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,39 +1,13 @@ | ||
FROM php:7.4.33-cli-alpine3.16 AS php74 | ||
|
||
CMD ["/bin/sh"] | ||
WORKDIR /var/www/html | ||
|
||
RUN apk add --no-cache --update git | ||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer | ||
|
||
CMD tail -f /dev/null | ||
|
||
FROM php:8.0.25-cli-alpine3.16 AS php80 | ||
|
||
CMD ["/bin/sh"] | ||
WORKDIR /var/www/html | ||
|
||
RUN apk add --no-cache --update git | ||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer | ||
|
||
CMD tail -f /dev/null | ||
|
||
FROM php:8.1.12-cli-alpine3.16 AS php81 | ||
|
||
CMD ["/bin/sh"] | ||
WORKDIR /var/www/html | ||
|
||
RUN apk add --no-cache --update git | ||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer | ||
|
||
CMD tail -f /dev/null | ||
|
||
FROM php:8.2.0RC6-cli-alpine3.16 AS php82 | ||
FROM php:8.3.12-cli-alpine3.20 AS php83 | ||
|
||
CMD ["/bin/sh"] | ||
WORKDIR /var/www/html | ||
|
||
RUN apk add --no-cache --update git | ||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer | ||
RUN apk add --no-cache ${PHPIZE_DEPS} \ | ||
&& pecl install pcov \ | ||
&& pecl install uopz-7.1.1 \ | ||
&& docker-php-ext-enable pcov uopz | ||
|
||
CMD 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
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,38 +1,9 @@ | ||
version: "3.7" | ||
|
||
services: | ||
php74: | ||
php83: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
target: php74 | ||
container_name: 68publishers.webpack-encore-bundle.74 | ||
volumes: | ||
- .:/var/www/html:cached | ||
|
||
php80: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
target: php80 | ||
container_name: 68publishers.webpack-encore-bundle.80 | ||
volumes: | ||
- .:/var/www/html:cached | ||
|
||
php81: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
target: php81 | ||
container_name: 68publishers.webpack-encore-bundle.81 | ||
volumes: | ||
- .:/var/www/html:cached | ||
|
||
php82: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
target: php82 | ||
container_name: 68publishers.webpack-encore-bundle.82 | ||
target: php83 | ||
container_name: 68publishers.webpack-encore-bundle.83 | ||
volumes: | ||
- .:/var/www/html:cached |
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