Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/Dockerfile.jukebox
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN python3 -m venv $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"

# Install all Python dependencies
RUN pip install --no-cache-dir -r ${INSTALLATION_PATH}/requirements.txt
RUN pip install --no-binary=lgpio --no-cache-dir -r ${INSTALLATION_PATH}/requirements.txt

# Install pyzmq Python dependency separately
ENV ZMQ_PREFIX /opt/libzmq
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ tornado

# RPi's GPIO packages:
# use shim to keep current RPi.GPIO behavior also under Bookworm - see https://github.com/MiczFlor/RPi-Jukebox-RFID/issues/2313
rpi-lgpio --no-binary=lgpio
rpi-lgpio; platform_machine == "armv6l" or platform_machine == "armv7l" or platform_machine == "aarch64"
gpiozero

# PyZMQ is a special case:
Expand Down
Loading