From c7d952bccbf013ea69d4883d3772477a20fc8213 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Oct 2025 16:08:24 +0000 Subject: [PATCH 1/2] Bump torch from 2.2.1 to 2.8.0 in /pytorch-experiments Bumps [torch](https://github.com/pytorch/pytorch) from 2.2.1 to 2.8.0. - [Release notes](https://github.com/pytorch/pytorch/releases) - [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md) - [Commits](https://github.com/pytorch/pytorch/compare/v2.2.1...v2.8.0) --- updated-dependencies: - dependency-name: torch dependency-version: 2.8.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pytorch-experiments/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytorch-experiments/requirements.txt b/pytorch-experiments/requirements.txt index a1bd174..f376e1b 100644 --- a/pytorch-experiments/requirements.txt +++ b/pytorch-experiments/requirements.txt @@ -1,2 +1,2 @@ -torch==2.2.1 +torch==2.8.0 numpy==1.26.3 \ No newline at end of file From c022a6b1e3c5ea22fc60199fb0240ffdddf2a4e9 Mon Sep 17 00:00:00 2001 From: Chris Date: Mon, 8 Dec 2025 14:17:06 -0800 Subject: [PATCH 2/2] added pip3, pyton3, and installing patroni --- utility-pod/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/utility-pod/Dockerfile b/utility-pod/Dockerfile index c3e8432..dbcb0a5 100644 --- a/utility-pod/Dockerfile +++ b/utility-pod/Dockerfile @@ -24,6 +24,8 @@ RUN apt-get -y install \ postgresql \ postgresql-contrib \ postgresql-client \ + python3 \ + python3-pip \ procps \ rsync \ telnet \ @@ -33,6 +35,10 @@ RUN apt-get -y install \ wget \ yq +RUN pip3 install --no-cache-dir --upgrade --break-system-packages pip \ + && pip3 install --no-cache-dir patroni[etcd] \ + && rm -rf /var/lib/apt/lists/* + RUN curl -fsSL https://www.mongodb.org/static/pgp/server-8.0.asc | gpg -o /usr/share/keyrings/mongodb-server-8.0.gpg --dearmor RUN echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg ] https://repo.mongodb.org/apt/ubuntu noble/mongodb-org/8.0 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-8.0.list RUN apt-get -y update && \