From f760024812e87dfcba04a9f72d02859bced0f6bc Mon Sep 17 00:00:00 2001 From: Florent Daigniere Date: Fri, 19 Aug 2022 19:08:10 +0200 Subject: [PATCH] These are required for the healthcheck --- core/admin/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/admin/Dockerfile b/core/admin/Dockerfile index 01be460b..fad27574 100644 --- a/core/admin/Dockerfile +++ b/core/admin/Dockerfile @@ -36,9 +36,10 @@ WORKDIR /app COPY requirements-prod.txt requirements.txt RUN set -eu \ + && apk add --no-cache libressl curl \ && pip install --upgrade pip \ && pip install --extra-index-url=https://www.piwheels.org/simple -r requirements.txt --only-binary=:all: --no-binary=Flask-bootstrap,PyYAML,SQLAlchemy \ - || ( apk add --no-cache libressl curl postgresql-libs mariadb-connector-c \ + || ( apk add --no-cache postgresql-libs mariadb-connector-c \ && apk add --no-cache --virtual build-dep libressl-dev libffi-dev python3-dev build-base postgresql-dev mariadb-connector-c-dev cargo \ && pip install -r requirements.txt \ && apk del --no-cache build-dep )