Telegram-Chat-Bot / Dockerfile
Lee Thanh
Update Dockerfile
29a0ef7
raw
history blame
102 Bytes
FROM node:alpine
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
CMD ["node", "index.js"]