From 5f030d366832db07806d6a7445b53617267ee05c Mon Sep 17 00:00:00 2001 From: Marcelo Alencar Date: Sat, 11 Nov 2023 16:48:34 -0300 Subject: [PATCH] Revert "Build - Add piwheels support for ARMv6 and ARMv7 machines (rPi etc) (#1814)" (#1964) --- Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7bda03a8..e726d26e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,11 +20,6 @@ WORKDIR /install COPY requirements.txt /requirements.txt -# Instructing pip to fetch wheels from piwheels.org" on ARMv6 and ARMv7 machines -RUN if [ "$(dpkg --print-architecture)" = "armhf" ] || [ "$(dpkg --print-architecture)" = "armel" ]; then \ - printf "[global]\nextra-index-url=https://www.piwheels.org/simple\n" > /etc/pip.conf; \ - fi; - RUN pip install --target=/dependencies -r /requirements.txt # Playwright is an alternative to Selenium