mirror of
				https://github.com/rasbt/LLMs-from-scratch.git
				synced 2025-11-03 19:30:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			327 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			327 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 && \
 | 
						|
    apt-get install -y curl && \
 | 
						|
    rm -rf /var/lib/apt/lists/*
 | 
						|
 | 
						|
COPY requirements.txt requirements.txt
 | 
						|
 | 
						|
RUN pip install --no-cache-dir -r requirements.txt
 |