add: dockerfile

* change polling behaviour to be dev only
This commit is contained in:
Mohamed Sohail 2022-01-17 17:06:29 +03:00
parent 441ca421ee
commit e3b11fb719
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D
5 changed files with 16 additions and 3 deletions

2
.dockerignore Normal file
View File

@ -0,0 +1,2 @@
.nyc*
node_modules

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM node:17-alpine
ENV NODE_ENV production
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
EXPOSE 80
CMD [ "node", "src/" ]

View File

@ -1,4 +1,4 @@
[server]
host=0.0.0.0
port=3030
port=80
endpoint=

View File

@ -1,3 +1,2 @@
[telegram]
polling=true
token=

View File

@ -6,7 +6,7 @@ const cache = require("./cache");
const bot = require("./bot");
const log = require("./log");
if (config.get("TELEGRAM_POLLING")) {
if (process.env.NODE_ENV !== "production") {
bot.api.deleteWebhook().then(() => {
log.info("starting bot in polling mode");
bot.start();