mirror of
				https://github.com/warengroup/eximiabots-radiox.git
				synced 2025-11-04 06:49:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			250 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			250 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM node:13.14.0-alpine
 | 
						|
 | 
						|
#Dependencies
 | 
						|
RUN apk add --virtual .build-deps python make g++ gcc
 | 
						|
 | 
						|
#Dependencies for RadioX Bot
 | 
						|
RUN apk add --virtual .radiox-deps ffmpeg
 | 
						|
 | 
						|
WORKDIR /usr/src/app
 | 
						|
 | 
						|
COPY / /usr/src/app/
 | 
						|
 | 
						|
RUN npm install
 | 
						|
 | 
						|
CMD [ "npm", "start" ] |