Skip to content

Instantly share code, notes, and snippets.

View vonglasow's full-sized avatar
🎯
Focusing

vonglasow

🎯
Focusing
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 \