fix(docker): Dockerfile에 parser.py 등 누락 — COPY *.py로 수정
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user