diff --git a/api_ping/Dockerfile b/api_ping/Dockerfile index 77c2a9d..bb5440d 100644 --- a/api_ping/Dockerfile +++ b/api_ping/Dockerfile @@ -7,7 +7,7 @@ RUN apk --update add py3-pip g++ python3-dev libffi-dev musl-dev file make busyb RUN pip install --upgrade pip wheel # Install gevent so that we don't need to re-install it when common changes -RUN pip install gevent +RUN pip install gevent==22.10.2 # Install common lib first as it changes less COPY common /tmp/common diff --git a/backfiller/Dockerfile b/backfiller/Dockerfile index 5b9b18f..6648275 100644 --- a/backfiller/Dockerfile +++ b/backfiller/Dockerfile @@ -7,7 +7,7 @@ RUN apk --update add py3-pip g++ python3-dev libffi-dev musl-dev postgresql-dev RUN pip install --upgrade pip wheel # Install gevent so that we don't need to re-install it when common changes -RUN pip install gevent +RUN pip install gevent==22.10.2 # Install common lib first as it changes less COPY common /tmp/common diff --git a/bus_analyzer/Dockerfile b/bus_analyzer/Dockerfile index fe30462..63c412b 100644 --- a/bus_analyzer/Dockerfile +++ b/bus_analyzer/Dockerfile @@ -7,7 +7,7 @@ RUN apk --update add py3-pip g++ python3-dev libffi-dev musl-dev postgresql-dev RUN pip install --upgrade pip wheel # Install gevent so that we don't need to re-install it when common changes -RUN pip install gevent +RUN pip install gevent==22.10.2 # Install common lib first as it changes less COPY common /tmp/common diff --git a/chat_archiver/Dockerfile b/chat_archiver/Dockerfile index b60b9f9..fa4e4cf 100644 --- a/chat_archiver/Dockerfile +++ b/chat_archiver/Dockerfile @@ -7,7 +7,7 @@ RUN apk --update add py3-pip g++ python3-dev libffi-dev musl-dev file make busyb RUN pip install --upgrade pip wheel # Install gevent so that we don't need to re-install it when common changes -RUN pip install gevent +RUN pip install gevent==22.10.2 # Install girc, it's not really properly published on pypi so we pull it in via submodule COPY chat_archiver/girc /tmp/girc diff --git a/cutter/Dockerfile b/cutter/Dockerfile index dccd89f..b797eb3 100644 --- a/cutter/Dockerfile +++ b/cutter/Dockerfile @@ -7,7 +7,7 @@ RUN apk --update add py3-pip g++ python3-dev libffi-dev musl-dev postgresql-dev RUN pip install --upgrade pip wheel # Install gevent so that we don't need to re-install it when common changes -RUN pip install gevent +RUN pip install gevent==22.10.2 # Install common lib first as it changes less COPY common /tmp/common diff --git a/downloader/Dockerfile b/downloader/Dockerfile index 3fcf2c5..96c1aac 100644 --- a/downloader/Dockerfile +++ b/downloader/Dockerfile @@ -7,7 +7,7 @@ RUN apk --update add py3-pip g++ python3-dev libffi-dev musl-dev file make busyb RUN pip install --upgrade pip wheel # Install gevent so that we don't need to re-install it when common changes -RUN pip install gevent +RUN pip install gevent==22.10.2 # Install common lib first as it changes less COPY common /tmp/common diff --git a/playlist_manager/Dockerfile b/playlist_manager/Dockerfile index 98a61e1..47a32e2 100644 --- a/playlist_manager/Dockerfile +++ b/playlist_manager/Dockerfile @@ -7,7 +7,7 @@ RUN apk --update add py3-pip g++ python3-dev libffi-dev musl-dev postgresql-dev RUN pip install --upgrade pip wheel # Install gevent so that we don't need to re-install it when common changes -RUN pip install gevent +RUN pip install gevent==22.10.2 # Install common lib first as it changes less COPY common /tmp/common diff --git a/restreamer/Dockerfile b/restreamer/Dockerfile index bf3a7ba..f8aefe5 100644 --- a/restreamer/Dockerfile +++ b/restreamer/Dockerfile @@ -7,7 +7,7 @@ RUN apk --update add py3-pip g++ python3-dev libffi-dev musl-dev file make busyb RUN pip install --upgrade pip wheel # Install gevent so that we don't need to re-install it when common changes -RUN pip install gevent +RUN pip install gevent==22.10.2 # Install common lib first as it changes less COPY common /tmp/common diff --git a/segment_coverage/Dockerfile b/segment_coverage/Dockerfile index d8e0011..a5a697a 100644 --- a/segment_coverage/Dockerfile +++ b/segment_coverage/Dockerfile @@ -7,7 +7,7 @@ RUN apk --update add py3-pip g++ python3-dev libffi-dev musl-dev file make busyb RUN pip install --upgrade pip wheel # Install gevent so that we don't need to re-install it when common changes -RUN pip install gevent +RUN pip install gevent==22.10.2 # Install common lib first as it changes less COPY common /tmp/common diff --git a/sheetsync/Dockerfile b/sheetsync/Dockerfile index bf46f7f..231e47f 100644 --- a/sheetsync/Dockerfile +++ b/sheetsync/Dockerfile @@ -7,7 +7,7 @@ RUN apk --update add py3-pip g++ python3-dev libffi-dev musl-dev postgresql-dev RUN pip install --upgrade pip wheel # Install gevent so that we don't need to re-install it when common changes -RUN pip install gevent +RUN pip install gevent==22.10.2 # Install common lib first as it changes less COPY common /tmp/common diff --git a/thrimshim/Dockerfile b/thrimshim/Dockerfile index 4e3233a..02e7c0a 100644 --- a/thrimshim/Dockerfile +++ b/thrimshim/Dockerfile @@ -7,7 +7,7 @@ RUN apk --update add py3-pip g++ python3-dev libffi-dev musl-dev postgresql-dev RUN pip install --upgrade pip wheel # Install gevent so that we don't need to re-install it when common changes -RUN pip install gevent +RUN pip install gevent==22.10.2 # Install common lib first as it changes less COPY common /tmp/common diff --git a/zulip_bots/Dockerfile b/zulip_bots/Dockerfile index 4e7646a..b82f1d6 100644 --- a/zulip_bots/Dockerfile +++ b/zulip_bots/Dockerfile @@ -7,7 +7,7 @@ RUN apk --update add py3-pip g++ python3-dev libffi-dev musl-dev file make busyb RUN pip install --upgrade pip wheel # Install gevent so that we don't need to re-install it when common changes -RUN pip install gevent +RUN pip install gevent==22.10.2 # Install girc, it's not really properly published on pypi so we pull it in via submodule. # Also we should probably move the submodule out of chat_archiver now that it's used