mirror of
				https://github.com/aydenjahola/discord-multipurpose-bot.git
				synced 2025-11-04 00:01:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			No EOL
		
	
	
		
			298 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			No EOL
		
	
	
		
			298 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM node:24-alpine
 | 
						|
 | 
						|
WORKDIR /app
 | 
						|
 | 
						|
RUN apt-get update && \
 | 
						|
    apt-get install -y \
 | 
						|
    ffmpeg \
 | 
						|
    build-essential \
 | 
						|
    python3 \
 | 
						|
    git \
 | 
						|
    && rm -rf /var/lib/apt/lists/*
 | 
						|
 | 
						|
COPY package*.json ./
 | 
						|
 | 
						|
RUN npm install
 | 
						|
 | 
						|
COPY . .
 | 
						|
 | 
						|
ENV NODE_ENV=production
 | 
						|
 | 
						|
CMD ["node", "index.js"] |