mirror of
				https://github.com/qurator-spk/ocrd-galley.git
				synced 2025-10-30 02:34:13 +01:00 
			
		
		
		
	
		
			
	
	
		
			19 lines
		
	
	
	
		
			386 B
		
	
	
	
		
			Text
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
	
		
			386 B
		
	
	
	
		
			Text
		
	
	
	
	
	
|  | FROM my_ocrd_workflow-core | ||
|  | 
 | ||
|  | ARG PIP_INSTALL="pip3 install --no-cache-dir --use-feature=2020-resolver" | ||
|  | ARG OCRD_CIS_VERSION="0.1.5" | ||
|  | 
 | ||
|  | 
 | ||
|  | # Build pip installable stuff | ||
|  | RUN ${PIP_INSTALL} \ | ||
|  | # Now the real stuff: | ||
|  |         "https://github.com/cisocrgroup/ocrd_cis/archive/v${OCRD_CIS_VERSION}.tar.gz" | ||
|  | 
 | ||
|  | 
 | ||
|  | # Check pip dependencies | ||
|  | RUN pip3 check | ||
|  | 
 | ||
|  | 
 | ||
|  | # Default command | ||
|  | CMD ["ocrd-cis-ocropy-segment"] |