Split versions

This commit is contained in:
2019-10-10 16:56:20 -05:00
parent f242e392da
commit e794a963e8
12 changed files with 52 additions and 3 deletions
+22
View File
@@ -0,0 +1,22 @@
FROM nextcloud:16-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 add --no-cache sudo; \
apk del .build-deps
COPY redis.config.php /usr/src/nextcloud/config/redis.config.php