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
This commit is contained in:
Evgenij
2020-01-26 23:18:15 +03:00
committed by GitHub
parent 3cd975dbbd
commit 406d098172

View File

@ -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"]