Will it build?
Some checks failed
Gitea - Tutorials/php-kilo/master There was a failure building this commit

This commit is contained in:
Timothy Warren 2019-12-04 16:15:49 -05:00
parent fea583a495
commit 2e1d177e47

View File

@ -1,2 +1,5 @@
FROM php:7.4-cli-alpine FROM php:7.4-cli-alpine
RUN apk add --no-cache libffi && docker-php-ext-install ffi
RUN apk add --no-cache --virtual .persistent-deps libffi-dev \
&& docker-php-ext-configure ffi --with-ffi \
&& docker-php-ext-install ffi