From 8afef0493d46bb029cdf0aa701bfd74eb314960d Mon Sep 17 00:00:00 2001 From: Steven Bal Date: Mon, 31 Aug 2020 12:28:58 +0200 Subject: [PATCH] Pin setuptools to 47.1.1 in Dockerfile Installing ruamel.yaml.clib==0.2.0 wasn't working for setuptools==0.50.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f5c7285..9565e3a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN apk --no-cache add \ WORKDIR /app COPY ./requirements /app/requirements -RUN pip install pip setuptools -U +RUN pip install pip setuptools==47.1.1 RUN pip install -r requirements/production.txt