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-zts-alpine | |
RUN apk update && apk upgrade \ | |
&& apk add --no-cache git bash \ | |
g++ make autoconf \ | |
nano zip libxml2-dev libmemcached-dev \ | |
libxml2-dev icu-dev curl-dev pcre-dev | |
RUN pecl install xdebug \ | |
&& pecl install parallel \ |
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
# Load aliases from .zsh_aliases. | |
if [ -f $HOME/.zsh_aliases ]; then | |
. $HOME/.zsh_aliases | |
fi | |
# Load functions from .zsh_functions. | |
if [ -f $HOME/.zsh_functions ]; then | |
. $HOME/.zsh_functions | |
fi |