diff --git a/Dockerfile b/Dockerfile index 56b5b32..473f9b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:20-slim # Install ffmpeg and other deps -RUN apt-get update && apt-get install -y ffmpeg && apt-get clean && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y ffmpeg git && apt-get clean && rm -rf /var/lib/apt/lists/* WORKDIR /usr/src/app diff --git a/src/bot.js b/src/bot.js index 472bc10..d66b8e2 100644 --- a/src/bot.js +++ b/src/bot.js @@ -1,7 +1,7 @@ const { Telegraf } = require('telegraf'); const path = require('path'); const fs = require('fs'); -const { isOnSpamWatch } = require('./plugins/lib-spamwatch/spamwatch.js'); +const { isOnSpamWatch } = require('./spamwatch/spamwatch.js'); require('@dotenvx/dotenvx').config({ path: "config.env" }); require('./plugins/ytdlp-wrapper.js'); // require('./plugins/termlogger.js');