Timothy J Warren
2e1d177e47
Some checks failed
Gitea - Tutorials/php-kilo/master There was a failure building this commit
6 lines
171 B
Docker
6 lines
171 B
Docker
FROM php:7.4-cli-alpine
|
|
|
|
RUN apk add --no-cache --virtual .persistent-deps libffi-dev \
|
|
&& docker-php-ext-configure ffi --with-ffi \
|
|
&& docker-php-ext-install ffi
|