From e2aba3bc9399445760765a1a2af6aa2698a594b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Mon, 13 Jan 2020 22:32:28 +0100 Subject: [PATCH] Fix missing openssl-dev library in CI This was causing an error during the install of the cryptography module in CI (alpine linux). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 73d8c70..eb63d58 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ ci-info: ## Print info about environment pip3 --version ci-install-alpine-requirements: ## Install requirements for a python:alpine image - apk add --no-cache docker gcc musl-dev yaml-dev + apk add --no-cache docker gcc libffi-dev libressl-dev musl-dev yaml-dev ci-install-python-requirements: ## Install requirements pip3 install --upgrade pip