chore: clean up project to focus only on btc_bot service on bot branch

This commit is contained in:
Gemini CLI
2026-03-05 20:59:52 +01:00
parent 295bd3085c
commit 907eecc4de
70 changed files with 8 additions and 13435 deletions

View File

@ -3,10 +3,10 @@ FROM python:3.11-slim
WORKDIR /app
# Copy requirements first
COPY requirements_bot.txt .
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements_bot.txt
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY src/ ./src/