7 lines
		
	
	
		
			194 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			194 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| FROM python:latest
 | |
| COPY ./requirements.txt /app/requirements.txt
 | |
| WORKDIR /app
 | |
| RUN pip install -r requirements.txt
 | |
| COPY . /app
 | |
| RUN chmod +x scripts/run.bash
 | |
| CMD ["bash", "scripts/run.bash"] |