From 4d24bbfc667218ed3edbc938700e6607653f5525 Mon Sep 17 00:00:00 2001 From: fscagnelli <105932184+fscagnelli@users.noreply.github.com> Date: Fri, 20 May 2022 16:39:15 +0200 Subject: [PATCH] Add missing apk packages --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ea17cc76..65591c96 100644 --- a/README.md +++ b/README.md @@ -168,7 +168,7 @@ Dockerfile FROM alpine:3.12 ADD . /src/ -RUN apk --no-cache add --update python3 py3-pip py3-wheel git && \ +RUN apk --no-cache add --update python3 py3-pip py3-wheel git libxml2-dev libxslt-dev python3-dev libc-dev gcc && \ git init /src && pip3 install /src COPY testcases.yaml /usr/lib/python3.8/site-packages/xtesting/ci/testcases.yaml CMD ["run_tests", "-t", "all"]