[Docker] Remove piwheel urls

This commit is contained in:
Herklos
2021-07-03 22:17:59 +02:00
parent f8f5907e6e
commit a79f3934bf
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ ENV PATH="/opt/venv/bin:$PATH"
COPY . .
RUN pip install -U setuptools wheel pip>=20.0.0 \
&& pip install Cython==0.29.21 \
&& pip install --extra-index-url https://www.piwheels.org/simple --prefer-binary -r requirements.txt \
&& pip install --prefer-binary -r requirements.txt \
&& python setup.py install
FROM python:3.8-slim-buster

View File

@@ -8,6 +8,6 @@ ENV CYTHON_IGNORE=true
COPY dev_requirements.txt .
COPY tests tests
RUN pip freeze && pip install --extra-index-url https://www.piwheels.org/simple --prefer-binary -r dev_requirements.txt
RUN pip freeze && pip install --prefer-binary -r dev_requirements.txt
ENTRYPOINT ["./tests/docker-entrypoint.sh"]