Skip to content

Commit

Permalink
Merge pull request MiczFlor#2273
Browse files Browse the repository at this point in the history
merge hotfix 3.5.2
  • Loading branch information
AlvinSchiller authored Feb 19, 2024
2 parents 21639b9 + 958ada9 commit e1e8416
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/armv7/jukebox.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ WORKDIR ${HOME}
COPY --chown=${USER}:${USER} . ${INSTALLATION_PATH}/

RUN pip install --no-cache-dir -r ${INSTALLATION_PATH}/requirements.txt
RUN pip install --no-cache-dir --pre --no-binary pyzmq pyzmq
RUN pip install --no-cache-dir --no-binary pyzmq pyzmq

EXPOSE 5555 5556

Expand Down
2 changes: 1 addition & 1 deletion docker/jukebox.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ RUN [ "$(uname -m)" = "aarch64" ] && ARCH="arm64" || ARCH="$(uname -m)"; \
rm -f libzmq.tar.gz;

RUN export ZMQ_PREFIX=${PREFIX} && export ZMQ_DRAFT_API=1
RUN pip install -v --no-binary pyzmq --pre pyzmq
RUN pip install -v --no-binary pyzmq pyzmq

EXPOSE 5555 5556

Expand Down
2 changes: 1 addition & 1 deletion installation/routines/setup_jukebox_core.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ _jukebox_core_build_and_install_pyzmq() {
fi

ZMQ_PREFIX="${JUKEBOX_ZMQ_PREFIX}" ZMQ_DRAFT_API=1 \
pip install -v --no-binary pyzmq --pre pyzmq
pip install -v --no-binary pyzmq pyzmq
else
print_lc " Skipping. pyzmq already installed"
fi
Expand Down

0 comments on commit e1e8416

Please sign in to comment.