Files
LLMs-from-scratch/appendix-A/04_optional-docker-environment/.devcontainer/Dockerfile
2024-04-08 20:49:37 -04:00

12 lines
294 B
Docker

FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y rsync && \
apt-get install -y git && \
rm -rf /var/lib/apt/lists/*
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt