Remove submodules (really this time)

This commit is contained in:
2020-11-09 13:02:09 +01:00
parent 70d87fe5d1
commit 956f51612d
4 changed files with 35 additions and 2 deletions

30
phpfpm/Dockerfile Normal file
View File

@@ -0,0 +1,30 @@
FROM php:7.4-fpm-alpine
RUN apk add --update --no-cache --virtual \
build-base \
autoconf \
jpeg-dev \
zlib-dev \
libpng-dev \
freetype-dev \
libzip-dev \
oniguruma-dev \
ssmtp
ENV LIBRARY_PATH=/lib:/usr/lib
RUN docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ \
&& docker-php-ext-install -j$(nproc) \
iconv \
gd \
zip \
sockets \
mysqli \
pdo \
pdo_mysql \
mbstring \
&& pecl install xdebug \
&& docker-php-ext-enable xdebug
RUN rm -r /tmp/* /var/cache/* \
&& docker-php-source delete