1
0
mirror of https://github.com/wallabag/docker synced 2025-12-13 09:46:27 +00:00

Merge pull request #158 from brouberol/patch-1

Fix iconv setup to make it support non-ASCII encodings
This commit is contained in:
Jérémy Benoist
2019-06-14 20:32:36 +02:00
committed by GitHub

View File

@@ -4,6 +4,9 @@ LABEL maintainer "Marvin Steadfast <marvin@xsteadfastx.org>"
ARG WALLABAG_VERSION=2.3.8
RUN apk add gnu-libiconv --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ --allow-untrusted
ENV LD_PRELOAD /usr/lib/preloadable_libiconv.so php
RUN set -ex \
&& apk update \
&& apk upgrade --available \