From bfb4d9da3b8857c7d173f1be69bd527408e41101 Mon Sep 17 00:00:00 2001 From: Abhilash Raj Date: Wed, 26 Oct 2022 00:51:11 -0700 Subject: [PATCH] Add lynx to existing apk add command. --- core/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/Dockerfile b/core/Dockerfile index 9b80900..3a4ee7d 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -10,9 +10,8 @@ RUN --mount=type=cache,target=/root/.cache \ && apk add --virtual build-deps gcc python3-dev musl-dev postgresql-dev \ libffi-dev \ # Mailman html to plaintext conversion uses lynx. - && apk add --no-cache lynx \ # psutil needs linux-headers to compile on musl c library. - && apk add --no-cache bash su-exec postgresql-client mysql-client curl python3 py3-pip linux-headers py-cryptography mariadb-connector-c \ + && apk add --no-cache bash su-exec postgresql-client mysql-client curl python3 py3-pip linux-headers py-cryptography mariadb-connector-c lynx \ && python3 -m pip install -U pip setuptools wheel \ && python3 -m pip install psycopg2 \ gunicorn==19.9.0 \