docs: add DOCKER_GUIDE.md and fix .env parsing; chore: update docker and script configurations

This commit is contained in:
BTC Bot
2026-03-05 08:20:18 +01:00
parent e41afcf005
commit 30aeda0901
25 changed files with 1806 additions and 0 deletions

20
docker/Dockerfile.bot Normal file
View File

@ -0,0 +1,20 @@
FROM python:3.11-slim
WORKDIR /app
# Copy requirements first
COPY requirements_bot.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements_bot.txt
# Copy application code
COPY src/ ./src/
COPY config/ ./config/
COPY .env .
# Set Python path
ENV PYTHONPATH=/app
# Run the bot
CMD ["python", "src/strategies/ping_pong_bot.py"]