From 406d098172e37f5b24c5df3cc1f704f848b75f0b Mon Sep 17 00:00:00 2001 From: Evgenij Date: Sun, 26 Jan 2020 23:18:15 +0300 Subject: [PATCH] Update Dockerfile Generation does not work due to: iconv(): Wrong charset, conversion from `UTF-8' to `UTF-8//IGNORE' is not allowed Installing the library gnu-libiconv will solve the problem --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 46654b42..a736bf4e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,7 +46,10 @@ RUN touch database/database.sqlite && \ chmod -R 775 storage/logs/ && \ chmod -R 775 bootstrap/cache/ +# Fix for https://github.com/bytefury/crater/issues/69 +RUN apk add --no-cache gnu-libiconv +ENV LD_PRELOAD /usr/lib/preloadable_libiconv.so php + EXPOSE 9000 CMD ["php-fpm", "--nodaemonize"] -