Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pytorch-experiments/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
torch==2.2.1
torch==2.8.0
numpy==1.26.3
6 changes: 6 additions & 0 deletions utility-pod/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ RUN apt-get -y install \
postgresql \
postgresql-contrib \
postgresql-client \
python3 \
python3-pip \
procps \
rsync \
telnet \
Expand All @@ -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 && \
Expand Down