Skip to content

Commit

Permalink
fix: docker build after pyzmq update (#2351)
Browse files Browse the repository at this point in the history
* fix: Add cmake as requirement to support pyzmq build

* fix: Remove cmake and pin pyzmq<26 as cmake does not build well in RPI env
  • Loading branch information
pabera committed Apr 21, 2024
1 parent 6ca650b commit 6003682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile.jukebox
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RUN pip install --no-cache-dir -r ${INSTALLATION_PATH}/requirements.txt
ENV ZMQ_PREFIX /opt/libzmq
ENV ZMQ_DRAFT_API 1
COPY --from=libzmq ${ZMQ_PREFIX} ${ZMQ_PREFIX}
RUN pip install -v pyzmq --no-binary pyzmq
RUN pip install -v "pyzmq<26" --no-binary pyzmq

EXPOSE 5555 5556
WORKDIR ${INSTALLATION_PATH}/src/jukebox

0 comments on commit 6003682

Please sign in to comment.