added list of channelnames

This commit is contained in:
2025-04-09 22:09:10 +02:00
parent 954d0b329d
commit cd4effda1e
4 changed files with 56 additions and 4 deletions

View File

@@ -6,9 +6,14 @@ WORKDIR /app
# Copy the requirements.txt and the script to the container
COPY requirements.txt .
COPY bot.py .
COPY channelnames.json config/
# Create necessary directories
RUN mkdir -p data
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Run the bot
CMD ["python", "bot.py"]