Open luiszaelot opened 4 years ago
Sorry, finally I fixed the problem. I'll create a pull request to solve this in the master branch.
Here is the patch if someone is getting the same error:
diff --git a/Dockerfile b/Dockerfile
index a48eb18..3462ab0 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,6 +5,8 @@ COPY . /cert-issuer
COPY conf_regtest.ini /etc/cert-issuer/conf.ini
RUN apk add --update \
+ libxml2-dev \
+ libxslt-dev \
bash \
ca-certificates \
curl \
diff --git a/requirements.txt b/requirements.txt
index e37c7d3..e132453 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -10,4 +10,5 @@ pyld>=1.0.3
pysha3>=1.0.2
python-bitcoinlib>=0.10.1
tox>=3.0.0
-jsonschema<3.0.0
\ No newline at end of file
+jsonschema<3.0.0
+lxml
Sorry, I have not permissions to push to this repo. But here is the patch. Please, validate the patch and add it to master branch.
Bumping into this as well.
@llopezshaman you should be able to open PRs from a fork?
I followed cert-issuer guide to build my docker image but it fails with this error message:
I tryed to fix it adding libxml to alpine and python requirements.txt but it does not solve the issue.
Thanks!!