From 3bb0d68ead2271ab3714b773b9aba2b98ab78666 Mon Sep 17 00:00:00 2001 From: Alexander Graf Date: Mon, 5 Jul 2021 23:27:42 +0200 Subject: [PATCH] add cargo to build cryptography --- core/admin/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/admin/Dockerfile b/core/admin/Dockerfile index f3b8643c..6ea12311 100644 --- a/core/admin/Dockerfile +++ b/core/admin/Dockerfile @@ -26,7 +26,7 @@ WORKDIR /app COPY requirements-prod.txt requirements.txt RUN apk add --no-cache libressl curl 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 \ + libressl-dev libffi-dev python3-dev build-base postgresql-dev mariadb-connector-c-dev cargo \ && pip3 install -r requirements.txt \ && apk del --no-cache build-dep