Spaces:
				
			
			
	
			
			
		Sleeping
		
	
	
	
			
			
	
	
	
	
		
		
		Sleeping
		
	File size: 335 Bytes
			
			f4764ff 2a6472d f4764ff 2a6472d f4764ff 2a6472d 8a36255  | 
								1 2 3 4 5 6 7 8 9 10 11 12  | 
								FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
# Menyetel HF_HOME environment variable untuk cache model Hugging Face
ENV HF_HOME /app/.cache/huggingface
RUN mkdir -p /app/.cache/huggingface && chmod -R 777 /app/.cache
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |