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

Submodule mailcatcher deleted from 36bc40b8f9

5
mailcatcher/Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM ruby:latest
RUN gem install mailcatcher
ENTRYPOINT ["mailcatcher", "-f", "--ip", "0.0.0.0", "--smtp-port", "25", "--no-quit"]

1
phpfpm

Submodule phpfpm deleted from 29760435f2

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