From 24c34963ba0731916f30ab5b7d446860b49cb911 Mon Sep 17 00:00:00 2001 From: Arno Date: Thu, 27 May 2021 11:03:19 -0700 Subject: [PATCH] Fixes #643 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 819006bb..dcfefc0e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ LABEL org.kennethreitz.vendor="Kenneth Reitz" ENV LC_ALL=C.UTF-8 ENV LANG=C.UTF-8 -RUN apt update -y && apt install python3-pip git -y && pip3 install --no-cache-dir pipenv +RUN apt-get -y update && apt-get -y install libffi-dev libssl-dev && apt update -y && apt install python3-pip git -y && pip3 install --no-cache-dir pipenv ADD Pipfile Pipfile.lock /httpbin/ WORKDIR /httpbin