12 lines
294 B
Docker
Raw Normal View History

FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
2024-02-26 20:24:15 +08:00
RUN apt-get update && \
apt-get upgrade -y && \
2024-04-03 20:28:02 -05:00
apt-get install -y rsync && \
apt-get install -y git && \
rm -rf /var/lib/apt/lists/*
2024-02-26 20:24:15 +08:00
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt