Created
July 2, 2019 09:58
-
-
Save hyperized/d9482860224562cb415e37ddaec07209 to your computer and use it in GitHub Desktop.
This file contains 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.2-fpm-alpine | |
LABEL maintainer="Gerben Geijteman <[email protected]>" | |
LABEL description="My Laravel base image with Redis support" | |
RUN apk --update add --virtual build-dependencies autoconf build-base \ | |
&& docker-php-ext-install bcmath \ | |
&& docker-php-ext-install pdo_mysql \ | |
&& pecl install redis-4.3.0 \ | |
&& docker-php-ext-enable redis \ | |
&& apk del build-dependencies | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment