mirror of
https://github.com/rasbt/LLMs-from-scratch.git
synced 2025-12-12 15:31:40 +00:00
Updated Dockerfile with following changes:
* changed CUDA files to pytorch 2.0.1 (for reproducibility) * fixed RUN command (for updating Ubuntu and installing Git)
This commit is contained in:
parent
321f3d33f9
commit
3787227c41
@ -1,10 +1,9 @@
|
||||
FROM pytorch/pytorch:2.2.0-cuda12.1-cudnn8-runtime
|
||||
FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
|
||||
|
||||
RUN <<EOF
|
||||
apt-get update
|
||||
apt-get install -y --no-install-recommends git
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
EOF
|
||||
RUN apt-get update && \
|
||||
apt-get upgrade -y && \
|
||||
apt-get install -y git && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY requirements.txt requirements.txt
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user