Telegram-Chat-Bot / Dockerfile
LeeThanh's picture
Create Dockerfile
82a127c
raw history blame
No virus
66 Bytes
FROM node:18
COPY . /app
WORKDIR /app
CMD ["node", "index.js"]