mirror of
https://github.com/stjornleysi/telegram_glpi.git
synced 2025-11-29 00:23:11 +00:00
6 lines
104 B
Docker
6 lines
104 B
Docker
FROM node
|
|
WORKDIR /bot
|
|
RUN npm install nodemon -g
|
|
COPY ./ ./
|
|
CMD ["nodemon", "telegram_support_bot.js"]
|