From 8e4b50a7ce95955554dceee6738d1ede1017364b Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Wed, 13 May 2020 12:30:51 +0100 Subject: [PATCH] Install libcurl and libssl explicitly in container They appear to be missing from `-slim` variant containers Co-authored-by: Ben Busby --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f39facd..b797c2c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.8-slim WORKDIR /usr/src/app - +RUN apt-get update && apt-get install -y build-essential libcurl4-openssl-dev libssl-dev COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt