From 7dfedae3f8073394d144349e7796859dbc3116ea Mon Sep 17 00:00:00 2001 From: Alexandro <52381045+AlexandroLuis@users.noreply.github.com> Date: Sat, 18 May 2024 14:29:10 +0200 Subject: [PATCH] fix Dockerfile (#2480) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4d85d02..890b533 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,12 +2,12 @@ FROM python:3.7-stretch RUN apt-get -y install libc-dev -RUN pip install pip==22.3.1 +RUN pip install --upgrade pip COPY . . WORKDIR python -RUN python -m pip install -e \".[dev, parallel]\" +RUN python -m pip install -e ".[dev, parallel]" WORKDIR /