Skip to content

Commit c5105c2

Browse files
authored
Merge pull request laradock#834 from xbojch/libicu-dev-not-found
Run apt-get update before installing intl extension
2 parents 4dda815 + 407353e commit c5105c2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

php-fpm/Dockerfile-70

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,8 @@ RUN if [ ${MSSQL} = true ]; then \
277277
ARG INSTALL_INTL=false
278278
RUN if [ ${INSTALL_INTL} = true ]; then \
279279
# Install intl and requirements
280-
apt-get install -y zlib1g-dev libicu-dev g++ && \
280+
apt-get -y update \
281+
&& apt-get install -y zlib1g-dev libicu-dev g++ && \
281282
docker-php-ext-configure intl && \
282283
docker-php-ext-install intl \
283284
;fi

0 commit comments

Comments
 (0)