Skip to content

Instantly share code, notes, and snippets.

View raul-guerrero's full-sized avatar

Raul Guerrero Deschamps raul-guerrero

View GitHub Profile
@Mikulas
Mikulas / Dockerfile
Last active March 11, 2022 12:34
Docker image PHP 7.1 alpine with extensions
FROM php:7.1-fpm-alpine
RUN apk add --update \
autoconf \
g++ \
libtool \
make \
&& docker-php-ext-install mbstring \
&& docker-php-ext-install mysqli \