From 24363b653f9eeb4ba7bdfec10dd6009d416bd337 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20M=C3=A4der?= Date: Tue, 5 Oct 2021 09:47:55 +0200 Subject: [PATCH] Remove openssl-dev from Dockerfile It is pulled by postgresql-dev anyway In the upcoming alpine, openssl v3 will be the default, but postgresql-dev will still require openssl v1.x. This creates a conflict, which can be resolved if postgresql-dev can choose the openssl version it depends on. --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 27597e5..b045523 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,6 @@ RUN apk add --no-cache \ make \ musl-dev \ openldap-dev \ - openssl-dev \ postgresql-dev \ py3-pip \ python3-dev \