From 207aae15a8440ec92a4c79a77323f86bfa80fc3a Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sun, 15 Nov 2020 16:17:25 +0100 Subject: [PATCH] root: add missing libraries for static docker container --- static.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static.Dockerfile b/static.Dockerfile index 04e6eee2a..ec5f07e4d 100644 --- a/static.Dockerfile +++ b/static.Dockerfile @@ -17,7 +17,7 @@ COPY --from=locker /app/requirements-dev.txt /app/ WORKDIR /app/ RUN apt-get update && \ - apt-get install -y --no-install-recommends postgresql-client-11 build-essential && \ + apt-get install -y --no-install-recommends postgresql-client-11 build-essential libxmlsec1-dev pkg-config && \ rm -rf /var/lib/apt/ && \ pip install -r requirements.txt --no-cache-dir && \ apt-get remove --purge -y build-essential && \