From 417a7b6073c8b7fc356f4eedf84e8e77f3f1bb4c Mon Sep 17 00:00:00 2001 From: Dani Llewellyn Date: Thu, 30 Jun 2022 02:15:23 +0100 Subject: [PATCH] fix: Add missing php7-xmlreader to container image WordPress Coding Standards sniffs require `XMLReader` support from PHP. * Add the missing Alpine package `php7-xmlreader` to `Dockerfile` Fixes #94 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 881b364..08d44e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,7 @@ RUN apk add --no-cache \ php7-sockets \ php7-tokenizer \ php7-xml \ + php7-xmlreader \ php7-xmlwriter \ php7-zlib