FROM node:18 RUN apt-get update && apt-get install -y git COPY . /app WORKDIR /app RUN npm install express telegraf bcrypt RUN chmod -R 777 /app EXPOSE 7860 CMD ["node", "server.js"]