Skip to content

Commit

Permalink
Fix dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
gandie committed May 6, 2024
1 parent 0476499 commit d9aaa6f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ws_broadcast/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt install \
iproute2 \
tree -y

RUN pip3 install git+https://loc.kplays.de:8080/Python/dockerutils.git \
RUN pip3 install --break-system-packages git+https://loc.kplays.de:8080/Python/dockerutils.git \
websockets

COPY fs/ /
Expand Down
4 changes: 2 additions & 2 deletions zeodbsync/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt install \
tree -y


RUN pip3 install Zope[wsgi]==5.9 -c https://zopefoundation.github.io/Zope/releases/5.9/constraints.txt
RUN pip3 install --break-system-packages Zope[wsgi]==5.9 -c https://zopefoundation.github.io/Zope/releases/5.9/constraints.txt

RUN pip3 install zope.mkzeoinstance \
RUN pip3 install --break-system-packages zope.mkzeoinstance \
psycopg2-binary \
git+https://github.com/gandie/Products.PythonScripts@hacked-python-scripts \
Products.ZSQLMethods \
Expand Down
6 changes: 3 additions & 3 deletions zope/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt install \
tree \
ffmpeg -y

RUN pip3 install Zope[wsgi]==5.9 -c https://zopefoundation.github.io/Zope/releases/5.9/constraints.txt
RUN pip3 install --break-system-packages Zope[wsgi]==5.9 -c https://zopefoundation.github.io/Zope/releases/5.9/constraints.txt

RUN pip3 install psycopg2-binary \
RUN pip3 install --break-system-packages psycopg2-binary \
git+https://github.com/gandie/Products.PythonScripts@hacked-python-scripts \
Products.ZSQLMethods \
Products.SiteErrorLog \
Expand All @@ -23,7 +23,7 @@ RUN pip3 install psycopg2-binary \
zope.mkzeoinstance \
Paste \
jsonpath-ng \
mediapipe==0.9.1.0
mediapipe

COPY fs/ /

Expand Down

0 comments on commit d9aaa6f

Please sign in to comment.