2024-10-23 03:23:31 +02:00
|
|
|
# Install PyTorch 2.5 with CUDA 12.4
|
|
|
|
FROM pytorch/pytorch:2.5.0-cuda12.4-cudnn9-runtime
|
2024-02-26 20:24:15 +08:00
|
|
|
|
2024-10-23 03:23:31 +02:00
|
|
|
# Install Ubuntu packages
|
2024-03-11 08:06:48 +00:00
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get upgrade -y && \
|
2024-04-03 20:28:02 -05:00
|
|
|
apt-get install -y rsync && \
|
2024-03-11 08:06:48 +00:00
|
|
|
apt-get install -y git && \
|
2024-06-06 03:17:49 +02:00
|
|
|
apt-get install -y curl && \
|
2024-03-11 08:06:48 +00:00
|
|
|
rm -rf /var/lib/apt/lists/*
|
2024-02-26 20:24:15 +08:00
|
|
|
|
2024-10-23 03:23:31 +02:00
|
|
|
# Install Python packages
|
2024-02-26 20:24:15 +08:00
|
|
|
COPY requirements.txt requirements.txt
|
2024-10-23 03:23:31 +02:00
|
|
|
RUN pip install --upgrade pip
|
2024-02-26 20:24:15 +08:00
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|