Added a bit more automation to build processes (only supported versions)

This commit is contained in:
ops
2021-03-22 14:53:31 -05:00
parent 413a57a781
commit f59640a0e3
14 changed files with 354 additions and 36 deletions
+21
View File
@@ -0,0 +1,21 @@
FROM nextcloud:21-fpm-alpine
RUN set -ex; \
apk add --no-cache --virtual .build-deps \
autoconf \
automake \
file \
g++ \
gcc \
make \
php7-dev \
re2c \
samba-dev \
zlib-dev; \
apk add --no-cache libsmbclient; \
pecl install smbclient; \
docker-php-ext-enable smbclient; \
apk add --no-cache imagemagick; \
apk del .build-deps
COPY redis.config.php /usr/src/nextcloud/config/redis.config.php