From 0176703f88aecffbd7b888dbe1e70074aa97b8c0 Mon Sep 17 00:00:00 2001 From: FireMasterK <20838718+FireMasterK@users.noreply.github.com> Date: Wed, 31 Mar 2021 22:11:04 +0000 Subject: [PATCH] Add curl as a build dep. Needed to run the rust installer script. --- pypy.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pypy.Dockerfile b/pypy.Dockerfile index 795f831..be14ce0 100644 --- a/pypy.Dockerfile +++ b/pypy.Dockerfile @@ -9,7 +9,7 @@ COPY ./requirements.txt /usr/src/app # Build Dependencies RUN apt-get update \ - && apt-get install -yq build-essential libssl-dev libffi-dev libxml2-dev libxslt-dev zlib1g-dev \ + && apt-get install -yq build-essential libssl-dev libffi-dev libxml2-dev libxslt-dev zlib1g-dev curl \ && rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/* # install rust toolchain