mirror of
				https://github.com/gsi-upm/soil
				synced 2025-10-31 15:48:16 +00:00 
			
		
		
		
	* Upgrade to python3.7 and pandas 0.3.4 because pandas has dropped support for python 3.4 -> There are some API changes in pandas, and I've update the code accordingly. * Set pytest as the default test runner
		
			
				
	
	
		
			13 lines
		
	
	
		
			258 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			258 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM python:3.7
 | |
| 
 | |
| WORKDIR /usr/src/app
 | |
| 
 | |
| COPY test-requirements.txt requirements.txt /usr/src/app/
 | |
| RUN pip install --no-cache-dir -r test-requirements.txt -r requirements.txt
 | |
| 
 | |
| COPY ./ /usr/src/app
 | |
| 
 | |
| RUN pip install '.[web]'
 | |
| 
 | |
| ENTRYPOINT ["python", "-m", "soil"]
 |