Skip to content

Commit

Permalink
dont use prereleases (docker)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvinSchiller committed Feb 19, 2024
1 parent 187e917 commit 9178d78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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

0 comments on commit 9178d78

Please sign in to comment.