1
0
forked from sass/tipibot

Add container support

This commit is contained in:
Rene Arumetsa
2026-04-20 22:37:55 +03:00
parent 07360d3f11
commit 64d9b304a9
3 changed files with 62 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM python:3.13-slim
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY . .
# Create data and logs directories
RUN mkdir -p data logs
CMD ["python", "bot.py"]