Skip to content

Instantly share code, notes, and snippets.

View vaimeo's full-sized avatar
🎯
Focusing

Wajid Abid Khan vaimeo

🎯
Focusing
View GitHub Profile
@tristanlins
tristanlins / iconv.docker
Created October 10, 2015 15:41
Docker PHP extension recipes
FROM php:5.6-cli
RUN apt-get update \
&& apt-get install -y \
libfreetype6-dev \
&& rm -rf /var/lib/apt/lists/* \
&& docker-php-ext-install iconv \
&& apt-get remove -y \
libfreetype6-dev \
&& apt-get install -y \