mirror of
https://github.com/aydenjahola/discord-multipurpose-bot.git
synced 2025-09-21 06:41:35 +01:00
21 lines
No EOL
296 B
Docker
21 lines
No EOL
296 B
Docker
FROM node:24-slim
|
|
|
|
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"] |