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