diff mbox series

[layerindex-web,1/6] Dockerfile: add captcha dependencies

Message ID b932b1dcecc204c2a40cc22a3e5d3c44fe3858a4.1671208436.git.tim.orling@konsulko.com
State Accepted, archived
Commit c7b02096e07ba2b964a7c83562971c2be24658d2
Delegated to: Tim Orling
Headers show
Series [layerindex-web,1/6] Dockerfile: add captcha dependencies | expand

Commit Message

Tim Orling Dec. 16, 2022, 4:42 p.m. UTC
From: Michael Halstead <mhalstead@linuxfoundation.org>

The current version of django-simple-captcha requires libz and freetype
development libraries.

Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org>
Refactor to apply. Fix typo. Fix previous mixed use of space vs tab.
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
 Dockerfile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/Dockerfile b/Dockerfile
index 4b2870a..a6c7ad2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -31,7 +31,9 @@  RUN DEBIAN_FRONTEND=noninteractive apt-get update \
 	python3-mysqldb \
 	python3-dev \
 	python3-pil \
-        python3-wheel \
+	python3-wheel \
+	libz-dev \
+	libfreetype6-dev \
 	libjpeg-dev \
 	libmariadbclient-dev \
 	locales \