File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM python:3.11-bullseye AS builder
33# install/compile wheels
44WORKDIR /usr/src/app
55COPY requirements.txt ./
6- RUN pip wheel --no-cache-dir --prefer-binary --extra-index-url https://www.piwheels.org/simple -- wheel-dir /usr/wheels -r requirements.txt
6+ RUN pip wheel --no-cache-dir --prefer-binary --wheel-dir /usr/wheels -r requirements.txt
77
88
99FROM python:3.11-slim-bullseye
Original file line number Diff line number Diff line change @@ -167,7 +167,6 @@ pip install -r requirements-dev.txt -U
167167pip-compile --upgrade --resolver backtracking --allow-unsafe requirements.in
168168
169169# edit requirements.txt and add/edit platform specific dependencies: RPi.GPIO
170- # check that all requirements are available for arm7 on https://www.piwheels.org/packages.html, especially cryptography
171170pip install -r requirements.txt -U
172171```
173172
You can’t perform that action at this time.
0 commit comments