mirror of
				https://github.com/warengroup/eximiabots-radiox.git
				synced 2025-11-03 14:31:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			258 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			258 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM node:16-alpine
 | 
						|
 | 
						|
#Dependencies
 | 
						|
RUN apk add --virtual .build-deps python3 make g++ gcc git
 | 
						|
 | 
						|
#Code Dependencies
 | 
						|
RUN apk add --virtual .code-deps ffmpeg
 | 
						|
 | 
						|
WORKDIR /usr/src/app
 | 
						|
 | 
						|
COPY / /usr/src/app/
 | 
						|
 | 
						|
RUN npm install
 | 
						|
 | 
						|
RUN npm run build
 | 
						|
 | 
						|
CMD [ "npm", "start" ]
 |