Files
LLMs-from-scratch/.devcontainer/Dockerfile
Daniel Kleine 3787227c41 Updated Dockerfile with following changes:
* changed CUDA files to pytorch 2.0.1 (for reproducibility)
* fixed RUN command (for updating Ubuntu and installing Git)
2024-03-11 08:06:48 +00:00

11 lines
260 B
Docker

FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
RUN apt-get update && \
apt-get upgrade -y && \
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