diff --git a/Dockerfile b/Dockerfile index 1ad1fc1..590e93f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,9 +6,8 @@ WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt aiohttp>=3.9.0 -# Copy application code -COPY config.py bridge.py bot.py watcher.py gateway.py main.py ./ -COPY .env* ./ +# Copy application code (all Python modules) +COPY *.py ./ # Default environment (can be overridden via docker-compose) ENV BOT_MODE=gateway