Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

add pytorch requirments file #14

Merged
merged 1 commit into from
Jan 8, 2025
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
3 changes: 3 additions & 0 deletions images/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ RUN apt-get update --yes \

COPY aaw-suspend-server.sh /usr/local/bin

# Add requirments file for adding pytorch
COPY pytorch-requirements.txt /usr/local/bin/requirments.txt

# https://github.com/StatCan/aaw-kubeflow-containers/issues/293
RUN mamba install --quiet \
'pillow' \
Expand Down
10 changes: 10 additions & 0 deletions images/base/pytorch-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Requirments file for adding pytorch to image

ipykernel
pytorch
torchvision
torchaudio
# gputil has nvidia-smi
gputil
# pytorch-cuda are the nvidia cuda drivers
pytorch-cuda == 11.8
Loading