Timothy J Warren
2d8d8ef5d2
Some checks failed
timw4mail/php-kilo/pipeline/head There was a failure building this commit
8 lines
258 B
Docker
8 lines
258 B
Docker
FROM php:8-cli-alpine
|
|
|
|
RUN apk add --no-cache --virtual .persistent-deps libffi-dev \
|
|
&& docker-php-ext-configure ffi --with-ffi \
|
|
&& docker-php-ext-install ffi
|
|
|
|
RUN apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing php8-phpdbg
|