diff --git a/Dockerfile b/Dockerfile index a7b4bef..4d74898 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY requirements.txt . # If platform is arm then we add the piwheels index for prebuilt arm wheels RUN if [ $(uname -m | cut -c 1-3) = "arm" ]; then \ echo -e "[global]\nextra-index-url=https://www.piwheels.org/simple" > /usr/local/pip.conf; fi && \ - pip --no-cache-dir install -r requirements.txt + pip --no-cache-dir install -r requirements.txt --prefer-binary COPY . .