diff --git a/src/autoconf/Dockerfile b/src/autoconf/Dockerfile index abdd59847..5d1533750 100644 --- a/src/autoconf/Dockerfile +++ b/src/autoconf/Dockerfile @@ -16,7 +16,7 @@ RUN apk add --no-cache --virtual .build-deps g++ gcc musl-dev jpeg-dev zlib-dev # Install python requirements RUN export MAKEFLAGS="-j$(nproc)" && \ - pip install --no-cache-dir-dir --require-hashes --target deps/python -r deps/requirements.txt + pip install --no-cache-dir --require-hashes --target deps/python -r deps/requirements.txt # Remove build dependencies RUN apk del .build-deps && \ diff --git a/src/bw/Dockerfile b/src/bw/Dockerfile index 62ca22620..4a77014db 100644 --- a/src/bw/Dockerfile +++ b/src/bw/Dockerfile @@ -28,7 +28,7 @@ RUN mkdir -p deps && \ # Install python requirements RUN export MAKEFLAGS="-j$(nproc)" && \ - pip install --no-cache-dir-dir --require-hashes --target deps/python -r deps/requirements.txt + pip install --no-cache-dir --require-hashes --target deps/python -r deps/requirements.txt # Clean up temporary dependencies RUN apk del .build-deps && \ diff --git a/src/scheduler/Dockerfile b/src/scheduler/Dockerfile index 21cda34c7..6f93ee24b 100644 --- a/src/scheduler/Dockerfile +++ b/src/scheduler/Dockerfile @@ -17,7 +17,7 @@ RUN apk add --no-cache --virtual .build-deps g++ gcc musl-dev jpeg-dev zlib-dev # Install python requirements RUN export MAKEFLAGS="-j$(nproc)" && \ - pip install --no-cache-dir-dir --require-hashes --target deps/python -r deps/requirements.txt + pip install --no-cache-dir --require-hashes --target deps/python -r deps/requirements.txt # Remove build dependencies RUN apk del .build-deps && \ diff --git a/src/ui/Dockerfile b/src/ui/Dockerfile index 92fc62c2f..a08c6089a 100755 --- a/src/ui/Dockerfile +++ b/src/ui/Dockerfile @@ -17,7 +17,7 @@ RUN apk add --no-cache --virtual .build-deps g++ gcc musl-dev jpeg-dev zlib-dev # Install python requirements RUN export MAKEFLAGS="-j$(nproc)" && \ - pip install --no-cache-dir-dir --require-hashes --target deps/python -r deps/requirements.txt + pip install --no-cache-dir --require-hashes --target deps/python -r deps/requirements.txt # Remove build dependencies RUN apk del .build-deps && \