Telegram-Chat-Bot / Dockerfile
LeeThanh's picture
Update Dockerfile
25d702c
raw
history blame
No virus
83 Bytes
FROM node:18
COPY . /app
WORKDIR /app
RUN npm install
CMD ["node", "index.js"]