11 lines
		
	
	
		
			No EOL
		
	
	
		
			213 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			No EOL
		
	
	
		
			213 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM ubuntu:latest
 | 
						|
LABLE maintainer="Alpha"
 | 
						|
 | 
						|
RUN apt-get update && \
 | 
						|
	apt-get install -y wget mono-runtime libsqlite3-dev screen && \
 | 
						|
	mkdir /mfbot
 | 
						|
 | 
						|
COPY dockerrun.sh /
 | 
						|
COPY download.sh /
 | 
						|
 | 
						|
RUN chmod a+x /dockerrun |