-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
05ed598
commit 6dc7feb
Showing
5 changed files
with
94 additions
and
8 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
FROM php:7.4-rc-fpm | ||
|
||
ARG TIME_ZONE=Pacific/Auckland | ||
|
||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ | ||
apt-transport-https \ | ||
libfreetype6-dev \ | ||
libjpeg62-turbo-dev \ | ||
libmcrypt-dev \ | ||
libpng-dev \ | ||
libxml2-dev \ | ||
libicu-dev \ | ||
libpq-dev \ | ||
gnupg2 \ | ||
nano \ | ||
wget \ | ||
openssl \ | ||
locales \ | ||
tzdata \ | ||
git \ | ||
libzip-dev \ | ||
&& docker-php-ext-install -j$(nproc) xmlrpc \ | ||
zip \ | ||
intl \ | ||
soap \ | ||
opcache \ | ||
pdo_pgsql \ | ||
pdo_mysql \ | ||
pgsql \ | ||
mysqli \ | ||
&& docker-php-ext-configure gd \ | ||
&& docker-php-ext-install -j$(nproc) gd | ||
|
||
RUN git clone https://github.com/tideways/php-profiler-extension.git \ | ||
&& cd php-profiler-extension \ | ||
&& phpize \ | ||
&& ./configure \ | ||
&& make && make install | ||
|
||
RUN echo "extension=tideways_xhprof.so" >> /usr/local/etc/php/conf.d/tideways_xhprof.ini | ||
|
||
RUN pecl install -o -f redis \ | ||
&& rm -rf /tmp/pear \ | ||
&& docker-php-ext-enable redis | ||
|
||
# we need en_US locales for MSSQL connection to work | ||
# we need en_AU locales for behat to work | ||
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \ | ||
sed -i -e 's/# en_AU.UTF-8 UTF-8/en_AU.UTF-8 UTF-8/' /etc/locale.gen && \ | ||
dpkg-reconfigure --frontend=noninteractive locales && \ | ||
update-locale LANG=en_US.UTF-8 | ||
|
||
ENV LANG en_US.UTF-8 | ||
ENV LANGUAGE en_US.UTF-8 | ||
ENV LC_ALL en_US.UTF-8 | ||
|
||
# install mssql extension | ||
RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \ | ||
&& curl https://packages.microsoft.com/config/debian/8/prod.list | tee /etc/apt/sources.list.d/mssql-tools.list \ | ||
&& apt-get update && ACCEPT_EULA=Y apt-get install -y \ | ||
msodbcsql17 \ | ||
mssql-tools \ | ||
unixodbc-dev | ||
|
||
# Workaround to get MSSQL connection working on Debian 9 (stretch) | ||
# https://emacstragic.net/2017/11/06/mssql-odbc-client-on-debian-9-stretch/ | ||
RUN wget "http://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.0.0_1.0.1t-1+deb8u12_amd64.deb" \ | ||
&& DEBIAN_FRONTEND=noninteractive dpkg -i ./libssl1.0.0_1.0.1t-1+deb8u12_amd64.deb | ||
|
||
RUN echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bash_profile \ | ||
&& echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bashrc | ||
|
||
RUN pear config-set php_ini `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"` system \ | ||
&& pecl install sqlsrv-5.7.0preview \ | ||
&& pecl install pdo_sqlsrv-5.7.0preview | ||
|
||
RUN docker-php-ext-enable sqlsrv.so && docker-php-ext-enable pdo_sqlsrv.so | ||
|
||
RUN ln -fs /usr/share/zoneinfo/${TIME_ZONE} /etc/localtime \ | ||
&& dpkg-reconfigure --frontend noninteractive tzdata | ||
|
||
COPY config/php.ini /usr/local/etc/php/ | ||
COPY config/fpm.conf /usr/local/etc/php-fpm.d/zz-totara.conf | ||
|
||
# Source each .bash file found in the /bash/ folder | ||
RUN echo 'for f in ~/custom_bash/*.bash; do [[ -e "$f" ]] && source "$f"; done;' >> ~/.bashrc |