You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			301 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			301 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| #
 | |
| # Dockerfile for openrefine-reconcile-csv
 | |
| #
 | |
| 
 | |
| FROM java:8-jre-alpine
 | |
| 
 | |
| MAINTAINER kev <noreply@easypi.pro>
 | |
| 
 | |
| ADD http://okfnlabs.org/reconcile-csv/dist/reconcile-csv-0.1.2.jar /app/
 | |
| 
 | |
| WORKDIR /data
 | |
| 
 | |
| EXPOSE 8000
 | |
| 
 | |
| CMD java -jar /app/reconcile-csv-0.1.2.jar "${CSV_FILE}" "${SEARCH_COLUMN}" "${ID_COLUMN}"
 |