Skip to content

Instantly share code, notes, and snippets.

@tarlepp
Created November 12, 2020 16:27
Show Gist options
  • Select an option

  • Save tarlepp/952b56fa49d129eb7c9fba3707bdf570 to your computer and use it in GitHub Desktop.

Select an option

Save tarlepp/952b56fa49d129eb7c9fba3707bdf570 to your computer and use it in GitHub Desktop.
version: '3'
services:
php:
build:
context: .
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