mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-30 18:22:37 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			411 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			411 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| ## GPU Build
 | |
| # FROM tensorflow/tensorflow:latest-gpu as gpu
 | |
| 
 | |
| # WORKDIR /code
 | |
| 
 | |
| # COPY ./requirements.txt /code/requirements.txt
 | |
| 
 | |
| # RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
 | |
| 
 | |
| # COPY ./app /code/app
 | |
| 
 | |
| 
 | |
| ## CPU BUILD
 | |
| FROM python:3.8 as cpu
 | |
| 
 | |
| WORKDIR /code
 | |
| 
 | |
| COPY ./requirements.txt /code/requirements.txt
 | |
| 
 | |
| RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
 | |
| 
 | |
| COPY ./app /code/app |