fix(docker): Dockerfile에 parser.py 등 누락 — COPY *.py로 수정

This commit is contained in:
Variet Worker
2026-03-11 21:24:09 +09:00
parent c60d14e408
commit 7e36db5191

View File

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