Telegram-Chat-Bot / Dockerfile
Lee Thanh
Create Dockerfile
82a127c
raw
history blame
66 Bytes
FROM node:18
COPY . /app
WORKDIR /app
CMD ["node", "index.js"]