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