mirror of
				https://github.com/Toumash/mlflow-docker
				synced 2025-11-04 07:09:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			164 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			164 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM continuumio/miniconda3:latest
 | 
						|
 | 
						|
RUN pip install mlflow boto3 pymysql
 | 
						|
 | 
						|
ADD . /app
 | 
						|
WORKDIR /app
 | 
						|
 | 
						|
COPY wait-for-it.sh wait-for-it.sh 
 | 
						|
RUN chmod +x wait-for-it.sh
 | 
						|
 |