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

Fix iconv/musl

This PR adds 2 instructions to the Docker image build, making sure that `iconv` is setup properly.

This fixes https://github.com/wallabag/wallabag/issues/4011

For more context about the actual underlying issue that this fixes, you can read up
* https://github.com/docker-library/php/issues/240
* https://github.com/docker-library/php/issues/428

Kind regards
This commit is contained in:
Balthazar Rouberol
2019-06-14 13:44:59 +02:00
committed by GitHub
parent 88bf8bb86d
commit 503114fcba

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 \