first commit

This commit is contained in:
2023-02-20 02:34:47 +01:00
commit 05f787af68
7 changed files with 2505 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM php:8.1-fpm-alpine
RUN apk update && \
apk add --no-cache git zip
RUN curl --silent --show-error https://getcomposer.org/installer | php && \
mv composer.phar /usr/local/bin/composer
# Uncomment to have mysqli extension installed and enabled
RUN docker-php-ext-install mysqli && docker-php-ext-enable mysqli
RUN apk add --no-cache pcre-dev $PHPIZE_DEPS && \
pecl install redis && \
docker-php-ext-enable redis