mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	* export clip models * export to hf refactored export code * export mclip, general refactoring cleanup * updated conda deps * do transforms with pillow and numpy, add tokenization config to export, general refactoring * moved conda dockerfile, re-added poetry * minor fixes * updated link * updated tests * removed `requirements.txt` from workflow * fixed mimalloc path * removed torchvision * cleaner np typing * review suggestions * update default model name * update test
		
			
				
	
	
		
			33 lines
		
	
	
		
			917 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			917 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:3.11-bookworm as builder
 | 
						|
 | 
						|
ENV PYTHONDONTWRITEBYTECODE=1 \
 | 
						|
  PYTHONUNBUFFERED=1 \
 | 
						|
  PIP_NO_CACHE_DIR=true
 | 
						|
 | 
						|
RUN pip install --upgrade pip && pip install poetry
 | 
						|
RUN poetry config installer.max-workers 10 && \
 | 
						|
  poetry config virtualenvs.create false
 | 
						|
RUN python -m venv /opt/venv
 | 
						|
ENV VIRTUAL_ENV="/opt/venv" PATH="/opt/venv/bin:${PATH}"
 | 
						|
 | 
						|
COPY poetry.lock pyproject.toml ./
 | 
						|
RUN poetry install --sync --no-interaction --no-ansi --no-root --only main
 | 
						|
 | 
						|
FROM python:3.11-slim-bookworm
 | 
						|
 | 
						|
RUN apt-get update && apt-get install -y --no-install-recommends tini libmimalloc2.0 && rm -rf /var/lib/apt/lists/*
 | 
						|
 | 
						|
WORKDIR /usr/src/app
 | 
						|
ENV NODE_ENV=production \
 | 
						|
  TRANSFORMERS_CACHE=/cache \
 | 
						|
  PYTHONDONTWRITEBYTECODE=1 \
 | 
						|
  PYTHONUNBUFFERED=1 \
 | 
						|
  PATH="/opt/venv/bin:$PATH" \
 | 
						|
  PYTHONPATH=/usr/src
 | 
						|
 | 
						|
COPY --from=builder /opt/venv /opt/venv
 | 
						|
COPY start.sh log_conf.json ./
 | 
						|
COPY app .
 | 
						|
ENTRYPOINT ["tini", "--"]
 | 
						|
CMD ["./start.sh"]
 |