From 7e36db5191fb7036c3a867772780cda8d02b7885 Mon Sep 17 00:00:00 2001 From: Variet Worker Date: Wed, 11 Mar 2026 21:24:09 +0900 Subject: [PATCH] =?UTF-8?q?fix(docker):=20Dockerfile=EC=97=90=20parser.py?= =?UTF-8?q?=20=EB=93=B1=20=EB=88=84=EB=9D=BD=20=E2=80=94=20COPY=20*.py?= =?UTF-8?q?=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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