Timothy J Warren
462e0d2731
Some checks failed
Gitea - Tutorials/php-kilo/master There was a failure building this commit
7 lines
211 B
Docker
7 lines
211 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 \
|
|
&& apk add --no-cache php7-phpdbg
|