Created
November 12, 2020 16:27
-
-
Save tarlepp/952b56fa49d129eb7c9fba3707bdf570 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| version: '3' | |
| services: | |
| php: | |
| build: | |
| context: . |
This file contains hidden or 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
| FROM php:7.4.11-fpm | |
| RUN apt-get update && apt-get install -y \ | |
| libicu-dev \ | |
| && rm -rf /var/lib/apt/lists/* | |
| RUN docker-php-ext-install mysqli \ | |
| && docker-php-ext-install intl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment