[layerindex-web] Dockerfile: add captcha dependancies

Message ID CADfgfoZWmkPv180gvHPC-fLqhdhdQ0dwjM3+EQ96DGuOo8r+7A@mail.gmail.com
State Superseded, archived
Delegated to: Tim Orling
Headers show
Series [layerindex-web] Dockerfile: add captcha dependancies | expand

Commit Message

Michael Halstead May 6, 2022, 1:12 p.m. UTC
The current version of django-simple-captcha requires libz and freetype
development libraries.

Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org>
---
 Dockerfile | 2 ++
 1 file changed, 2 insertions(+)

Patch

diff --git a/Dockerfile b/Dockerfile
index a45952f..41deb0c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -32,6 +32,8 @@  RUN DEBIAN_FRONTEND=noninteractive apt-get update \
  python3-dev \
  python3-pil \
         python3-wheel \
+ libz-dev \
+ libfreetype6-dev \
  libjpeg-dev \
  libmariadbclient-dev \
  locales \