zeki-bot / Dockerfile
VortexCr's picture
Update Dockerfile
e591e65 verified
Raw
History Blame Contribute Delete
201 Bytes
FROM node:20-slim
RUN apt-get update && apt-get install -y python3 make g++ && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 7860
CMD ["node", "bot.js"]