0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-06-17 08:34:48 +02:00

Use iconv from alpine edge repo to fix plugins breaking

Signed-off-by: Tony Stipanic <tony@stipanic.ch>
This commit is contained in:
Tony Stipanic 2020-11-06 12:39:10 +01:00
parent 3a3219b192
commit e5161f2de5
No known key found for this signature in database
GPG key ID: 3026BCCB6C9CC6BD

View file

@ -34,6 +34,11 @@ RUN set -ex; \
gmp-dev \ gmp-dev \
; \ ; \
\ \
apk add --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ --allow-untrusted \
gnu-libiconv \
php7-iconv \
; \
\
docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \ docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \
docker-php-ext-configure ldap; \ docker-php-ext-configure ldap; \
docker-php-ext-install -j "$(nproc)" \ docker-php-ext-install -j "$(nproc)" \
@ -95,6 +100,7 @@ VOLUME /var/www/html
%%VARIANT_EXTRAS%% %%VARIANT_EXTRAS%%
ENV NEXTCLOUD_VERSION %%VERSION%% ENV NEXTCLOUD_VERSION %%VERSION%%
ENV LD_PRELOAD=/usr/lib/preloadable_libiconv.so
RUN set -ex; \ RUN set -ex; \
apk add --no-cache --virtual .fetch-deps \ apk add --no-cache --virtual .fetch-deps \