first commit
This commit is contained in:
32
Docker/php/Dockerfile
Normal file
32
Docker/php/Dockerfile
Normal file
@@ -0,0 +1,32 @@
|
||||
FROM php:7.3-fpm
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
libfreetype6-dev \
|
||||
libjpeg62-turbo-dev \
|
||||
libmcrypt-dev \
|
||||
libpng-dev \
|
||||
zip \
|
||||
libzip-dev
|
||||
|
||||
RUN docker-php-ext-configure gd && \
|
||||
apt-get install -y imagemagick libmagickwand-dev && \
|
||||
pecl install imagick && docker-php-ext-enable imagick && \
|
||||
docker-php-ext-install -j$(nproc) gd && \
|
||||
docker-php-ext-install zip && \
|
||||
docker-php-ext-install opcache && \
|
||||
docker-php-ext-install bcmath && \
|
||||
apt-get install -y git vim
|
||||
|
||||
RUN pecl install redis-5.3.4 && docker-php-ext-enable redis
|
||||
|
||||
RUN pecl install xdebug-3.0.4 && \
|
||||
docker-php-ext-enable xdebug
|
||||
|
||||
RUN export COMPOSER_HOME=/usr/local/composer && \
|
||||
curl -sS https://getcomposer.org/installer \
|
||||
| php -- --install-dir=/usr/local/bin --filename=composer
|
||||
|
||||
COPY ./php-custom.ini /usr/local/etc/php/conf.d/php-custom.ini
|
||||
|
||||
COPY ./bashrc /root/.bashrc
|
||||
COPY ./inputrc /root/.inputrc
|
Reference in New Issue
Block a user