1
0
forked from sass/tipibot
Files
tipibot/Dockerfile
2026-04-20 22:37:55 +03:00

16 lines
254 B
Docker

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"]