78h77n3fyq / Dockerfile
ce3e81l2's picture
Upload 8 files
d9442dd verified
FROM node:slim
WORKDIR /app
COPY . .
EXPOSE 7860
RUN apt update -y &&\
chmod +x index.js main.sh bot assistant &&\
npm install
CMD ["node", "index.js"]