Skip to content

Commit 63c3360

Browse files
gfreyonigoetz
authored andcommitted
Use debian instead of alpine
This is related to issues with iconv on alpine linux (see [1]). I noticed that the content file `tipuesearch_content.json` didn't contain the sanitized text, but only the boolean `false`. I tracked it down to the `iconv` call. After migration to the debian docker image it is working fine. Build was started using `docker run --rm -it -w /build -v "$PWD":/build daux/daux.io daux generate`. [1] docker-library/php#428
1 parent 0c2032d commit 63c3360

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM composer:1.7.2 AS composer
22

3-
FROM php:7-alpine
3+
FROM php:7-stretch
44

5-
RUN apk info && apk add --no-cache unzip icu-dev
5+
RUN apt-get update && apt-get install -y libicu-dev git unzip
66
RUN docker-php-ext-configure intl \
77
&& docker-php-ext-install intl
88

0 commit comments

Comments
 (0)