first attempt at code mostly working
This commit is contained in:
15
bot/Dockerfile
Normal file
15
bot/Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
FROM node:20-slim
|
||||
|
||||
# Install ffmpeg for audio processing
|
||||
RUN apt-get update && \
|
||||
apt-get install -y ffmpeg python3 make g++ && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
|
||||
CMD ["npm", "start"]
|
||||
Reference in New Issue
Block a user