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 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 && \